Changeset 48
- Timestamp:
- Jul 12, 2010, 12:39:52 AM (15 years ago)
- Location:
- trunk/openjdk/hotspot/src/os_cpu/windows_x86/vm
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/openjdk/hotspot/src/os_cpu/windows_x86/vm/atomic_windows_x86.inline.hpp
r2 r48 22 22 * 23 23 */ 24 25 #ifdef __EMX__ 26 27 #include "../../linux_x86/vm/atomic_linux_x86.inline.hpp" 28 29 #else // __EMX__ 24 30 25 31 // The following alternative implementations are needed because … … 250 256 251 257 #pragma warning(default: 4035) // Enables warnings reporting missing return statement 258 259 #endif // __EMX__ -
trunk/openjdk/hotspot/src/os_cpu/windows_x86/vm/bytes_windows_x86.inline.hpp
r2 r48 22 22 * 23 23 */ 24 25 #ifdef __EMX__ 26 27 #include "../../linux_x86/vm/bytes_linux_x86.inline.hpp" 28 29 #else // __EMX__ 24 30 25 31 #pragma warning(disable: 4035) // Disable warning 4035: no return value … … 81 87 82 88 #pragma warning(default: 4035) // Enable warning 4035: no return value 89 90 #endif // __EMX__ -
trunk/openjdk/hotspot/src/os_cpu/windows_x86/vm/copy_windows_x86.inline.hpp
r2 r48 22 22 * 23 23 */ 24 25 #ifdef __EMX__ 26 27 #include "../../linux_x86/vm/copy_linux_x86.inline.hpp" 28 29 #else // __EMX__ 24 30 25 31 static void pd_conjoint_words(HeapWord* from, HeapWord* to, size_t count) { … … 165 171 pd_conjoint_oops_atomic((oop*)from, (oop*)to, count); 166 172 } 173 174 #endif // __EMX__ -
trunk/openjdk/hotspot/src/os_cpu/windows_x86/vm/orderAccess_windows_x86.inline.hpp
r2 r48 22 22 * 23 23 */ 24 25 #ifdef __EMX__ 26 27 #include "../../linux_x86/vm/orderAccess_linux_x86.inline.hpp" 28 29 #else // __EMX__ 24 30 25 31 #pragma warning(disable: 4035) // Disables warnings reporting missing return statement … … 209 215 210 216 #pragma warning(default: 4035) // Enables warnings reporting missing return statement 217 218 #endif // __EMX__
Note:
See TracChangeset
for help on using the changeset viewer.