src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/memory/SymbolTable.java
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File
*** old/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/memory/SymbolTable.java	Thu Jun  7 09:25:52 2018
--- new/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/memory/SymbolTable.java	Thu Jun  7 09:25:52 2018

*** 1,7 **** --- 1,7 ---- /* ! * Copyright (c) 2001, 2017, Oracle and/or its affiliates. All rights reserved. ! * Copyright (c) 2001, 2018, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation.
*** 63,72 **** --- 63,76 ---- Address shared = sharedTableField.getStaticFieldAddress(); table.sharedTable = (CompactHashTable)VMObjectFactory.newObject(CompactHashTable.class, shared); return table; } + public CompactHashTable getSharedTable() { + return sharedTable; + } + public static long getSeed() { return (long) seedField.getValue(); } public static boolean useAlternateHashcode() {

src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/memory/SymbolTable.java
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File