Changeset 138


Ignore:
Timestamp:
Sep 4, 2010, 1:04:37 AM (15 years ago)
Author:
dmik
Message:

hotspot: Fixed parsing -Xms and alike options.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/openjdk/hotspot/src/os/windows/vm/os_windows.inline.hpp

    r2 r138  
    2727inline const char* os::path_separator()                { return ";"; }
    2828
     29#ifdef __EMX__
     30inline const char* os::jlong_format_specifier()        { return "%lld"; }
     31inline const char* os::julong_format_specifier()       { return "%llu"; }
     32#else
    2933inline const char* os::jlong_format_specifier()        { return "%I64d"; }
    3034inline const char* os::julong_format_specifier()       { return "%I64u"; }
     35#endif
    3136
    3237// File names are case-insensitive on windows only
Note: See TracChangeset for help on using the changeset viewer.