< prev index next >

src/share/vm/classfile/sharedPathsMiscInfo.hpp

Print this page
rev 13114 : imported patch 8181917-refactor-ul-logstream-changes-2

*** 26,35 **** --- 26,37 ---- #define SHARE_VM_CLASSFILE_SHAREDPATHSMISCINFO_HPP #include "classfile/classLoader.hpp" #include "runtime/os.hpp" + class outputStream; + // During dumping time, when processing class paths, we build up the dump-time // classpath. The JAR files that exist are stored in the list ClassLoader::_first_append_entry. // However, we need to store other "misc" information for run-time checking, such as // // + The values of Arguments::get_sysclasspath() used during dumping.
*** 137,147 **** case NON_EXIST: return "NON_EXIST"; default: ShouldNotReachHere(); return "?"; } } ! virtual void print_path(int type, const char* path); bool check(); bool read_jint(jint *ptr) { return read(ptr, sizeof(jint)); } --- 139,149 ---- case NON_EXIST: return "NON_EXIST"; default: ShouldNotReachHere(); return "?"; } } ! virtual void print_path(outputStream* os, int type, const char* path); bool check(); bool read_jint(jint *ptr) { return read(ptr, sizeof(jint)); }
< prev index next >