Changeset 339 for trunk/openjdk/hotspot/src
- Timestamp:
- Feb 28, 2012, 7:49:15 PM (13 years ago)
- Location:
- trunk/openjdk/hotspot/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/openjdk/hotspot/src/cpu/x86/vm/jni_x86.h
r338 r339 45 45 #define JNIEXPORT __declspec(dllexport) 46 46 #define JNIIMPORT __declspec(dllimport) 47 48 #ifdef __OS2__ 49 #define JNICALL _System 50 #else 47 51 #define JNICALL __stdcall 52 #endif 48 53 49 54 #ifdef TARGET_COMPILER_gcc -
trunk/openjdk/hotspot/src/os/windows/vm/os_windows.cpp
r336 r339 1838 1838 1839 1839 void os::print_jni_name_prefix_on(outputStream* st, int args_size) { 1840 #if ndef _WIN641840 #if !defined(_WIN64) && !defined(__WIN32OS2__) 1841 1841 st->print("_"); 1842 1842 #endif … … 1845 1845 1846 1846 void os::print_jni_name_suffix_on(outputStream* st, int args_size) { 1847 #if ndef _WIN641847 #if !defined(_WIN64) && !defined(__WIN32OS2__) 1848 1848 st->print("@%d", args_size * sizeof(int)); 1849 1849 #endif
Note:
See TracChangeset
for help on using the changeset viewer.