Changeset 315 for trunk/openjdk/hotspot/src/os/windows
- Timestamp:
- Feb 15, 2012, 5:20:05 PM (14 years ago)
- Location:
- trunk/openjdk/hotspot/src/os/windows/vm
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/openjdk/hotspot/src/os/windows/vm/attachListener_windows.cpp
r309 r315 151 151 152 152 public: 153 #ifdef __EMX__153 #ifdef TARGET_COMPILER_gcc 154 154 void complete(jint result, bufferedStream* result_stream); 155 155 #else -
trunk/openjdk/hotspot/src/os/windows/vm/os_windows.cpp
r309 r315 3499 3499 void *code_ptr = (void *)code; 3500 3500 __try { 3501 #ifdef __EMX__3501 #ifdef TARGET_COMPILER_gcc 3502 3502 __asm__("call *%0" : : "m"(code_ptr)); 3503 3503 #else … … 3606 3606 #ifndef _WIN64 3607 3607 static long fp_control_word = 0; 3608 #ifdef __EMX__3608 #ifdef TARGET_COMPILER_gcc 3609 3609 __asm__("fstcw %0" : "=m"(fp_control_word)); 3610 3610 #else … … 3619 3619 const long invalid = 0x01; 3620 3620 fp_control_word |= invalid; 3621 #ifdef __EMX__3621 #ifdef TARGET_COMPILER_gcc 3622 3622 __asm__("fldcw %0" : : "m"(fp_control_word)); 3623 3623 #else -
trunk/openjdk/hotspot/src/os/windows/vm/os_windows.inline.hpp
r313 r315 43 43 inline const char* os::dll_file_extension() { return ".dll"; } 44 44 45 #ifdef __EMX__45 #ifdef TARGET_COMPILER_gcc 46 46 inline const char* os::jlong_format_specifier() { return "%lld"; } 47 47 inline const char* os::julong_format_specifier() { return "%llu"; }
Note:
See TracChangeset
for help on using the changeset viewer.