comparison src/share/vm/runtime/os.hpp @ 16395:ad431bf0de07

added support to load classes from graal.jar with a separate class loader
author Doug Simon <doug.simon@oracle.com>
date Thu, 03 Jul 2014 16:30:28 +0200
parents 4ca6dc0799b6
children b1911c1e44c8
comparison
equal deleted inserted replaced
16394:0dd27c6472d7 16395:ad431bf0de07
90 // Typedef for structured exception handling support 90 // Typedef for structured exception handling support
91 typedef void (*java_call_t)(JavaValue* value, methodHandle* method, JavaCallArguments* args, Thread* thread); 91 typedef void (*java_call_t)(JavaValue* value, methodHandle* method, JavaCallArguments* args, Thread* thread);
92 92
93 class os: AllStatic { 93 class os: AllStatic {
94 friend class VMStructs; 94 friend class VMStructs;
95 #ifdef GRAAL
96 friend class Arguments; // need access to format_boot_path
97 #endif
95 98
96 public: 99 public:
97 enum { page_sizes_max = 9 }; // Size of _page_sizes array (8 plus a sentinel) 100 enum { page_sizes_max = 9 }; // Size of _page_sizes array (8 plus a sentinel)
98 101
99 private: 102 private: