< prev index next >

src/hotspot/share/memory/dynamicArchive.hpp

Print this page

*** 97,111 **** // Does obj point to an address inside the runtime target space of the dynamic // archive? static bool is_in_target_space(void *obj); ! static address map(); ! static bool is_mapped(); static bool validate(FileMapInfo* dynamic_info); - static void disable(); - private: - static address map_impl(FileMapInfo* mapinfo); - static void map_failed(FileMapInfo* mapinfo); }; #endif // INCLUDE_CDS #endif // SHARE_VM_MEMORY_DYNAMICARCHIVE_HPP --- 97,106 ---- // Does obj point to an address inside the runtime target space of the dynamic // archive? static bool is_in_target_space(void *obj); ! static bool is_mapped() { return FileMapInfo::dynamic_info() != NULL; } static bool validate(FileMapInfo* dynamic_info); }; #endif // INCLUDE_CDS #endif // SHARE_VM_MEMORY_DYNAMICARCHIVE_HPP
< prev index next >