Ignore:
Timestamp:
Aug 9, 2010, 4:40:34 PM (15 years ago)
Author:
dmik
Message:

hotspot: Fixed version information in jvm.dll.

Location:
trunk/openjdk/hotspot/src/share/vm
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/openjdk/hotspot/src/share/vm/runtime/vm_version.cpp

    r2 r95  
    145145#define OS       LINUX_ONLY("linux")             \
    146146                 WINDOWS_ONLY("windows")         \
     147                 OS2_ONLY("os2")                 \
    147148                 SOLARIS_ONLY("solaris")
    148149
  • trunk/openjdk/hotspot/src/share/vm/utilities/macros.hpp

    r2 r95  
    149149#endif
    150150
     151#ifdef __OS2__
     152#define OS2_ONLY(code) code
     153#define NOT_OS2(code)
     154#else
     155#define OS2_ONLY(code)
     156#define NOT_OS2(code) code
     157#endif
     158
    151159#if defined(IA32) || defined(AMD64)
    152160#define X86
Note: See TracChangeset for help on using the changeset viewer.