Changeset 46
- Timestamp:
- Jun 28, 2010, 11:27:00 PM (15 years ago)
- Location:
- trunk/openjdk/hotspot/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/openjdk/hotspot/src/cpu/x86/vm/jni_x86.h
r2 r46 46 46 47 47 typedef int jint; 48 #ifdef __EMX__ 49 typedef __int64_t jlong; 50 #else 48 51 typedef __int64 jlong; 52 #endif 49 53 #endif 50 54 -
trunk/openjdk/hotspot/src/share/vm/utilities/globalDefinitions_gcc.hpp
r2 r46 51 51 #include <fcntl.h> 52 52 #include <dlfcn.h> 53 #ifndef OS2 53 54 #include <pthread.h> 55 #endif 54 56 55 57 #ifdef SOLARIS … … 229 231 #endif 230 232 inline int g_isnan(double f) { return isnand(f); } 231 #elif LINUX233 #elif defined(LINUX) || defined(OS2) 232 234 inline int g_isnan(float f) { return isnanf(f); } 233 235 inline int g_isnan(double f) { return isnan(f); }
Note:
See TracChangeset
for help on using the changeset viewer.