Changeset 46 for trunk/openjdk/hotspot/src/share/vm
- Timestamp:
- Jun 28, 2010, 11:27:00 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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.