src/share/vm/runtime/arguments.hpp

changeset 1719
5f1f51edaff6
parent 1679
745c853ee57f
child 1907
c18cbe5936b8
     1.1 --- a/src/share/vm/runtime/arguments.hpp	Tue Feb 23 23:14:34 2010 -0500
     1.2 +++ b/src/share/vm/runtime/arguments.hpp	Wed Feb 24 07:00:33 2010 -0800
     1.3 @@ -343,6 +343,12 @@
     1.4    static ArgsRange check_memory_size(julong size, julong min_size);
     1.5    static ArgsRange parse_memory_size(const char* s, julong* long_arg,
     1.6                                       julong min_size);
     1.7 +  // Parse a string for a unsigned integer.  Returns true if value
     1.8 +  // is an unsigned integer greater than or equal to the minimum
     1.9 +  // parameter passed and returns the value in uintx_arg.  Returns
    1.10 +  // false otherwise, with uintx_arg undefined.
    1.11 +  static bool parse_uintx(const char* value, uintx* uintx_arg,
    1.12 +                          uintx min_size);
    1.13  
    1.14    // methods to build strings from individual args
    1.15    static void build_jvm_args(const char* arg);

mercurial