hotspot/src/share/vm/runtime/arguments.hpp
changeset 26585 2048b8d90c91
parent 26135 82b516c550f7
child 26824 a04a1291103f
equal deleted inserted replaced
26584:43335aea982b 26585:2048b8d90c91
   588   static char* get_ext_dirs() { return _java_ext_dirs->value(); }
   588   static char* get_ext_dirs() { return _java_ext_dirs->value(); }
   589   static char* get_appclasspath() { return _java_class_path->value(); }
   589   static char* get_appclasspath() { return _java_class_path->value(); }
   590   static void  fix_appclasspath();
   590   static void  fix_appclasspath();
   591 
   591 
   592   // Operation modi
   592   // Operation modi
   593   static Mode mode()                        { return _mode; }
   593   static Mode mode()                { return _mode; }
       
   594   static bool is_interpreter_only() { return mode() == _int; }
       
   595 
   594 
   596 
   595   // Utility: copies src into buf, replacing "%%" with "%" and "%p" with pid.
   597   // Utility: copies src into buf, replacing "%%" with "%" and "%p" with pid.
   596   static bool copy_expand_pid(const char* src, size_t srclen, char* buf, size_t buflen);
   598   static bool copy_expand_pid(const char* src, size_t srclen, char* buf, size_t buflen);
   597 };
   599 };
   598 
   600