aboutsummaryrefslogtreecommitdiff
path: root/agent
diff options
context:
space:
mode:
authornever <none@none>2010-07-08 14:29:44 -0700
committernever <none@none>2010-07-08 14:29:44 -0700
commit70b69e8940f4e0621ca3f7aa1011cf729d71686d (patch)
tree0cd1b529a3ba95208aa92aa88e221529801b2682 /agent
parent3e9604bed881fdc552c886bce8877c293f1f12d2 (diff)
6965184: possible races in make_not_entrant_or_zombie
Reviewed-by: kvn
Diffstat (limited to 'agent')
-rw-r--r--agent/src/share/classes/sun/jvm/hotspot/code/NMethod.java2
1 files changed, 0 insertions, 2 deletions
diff --git a/agent/src/share/classes/sun/jvm/hotspot/code/NMethod.java b/agent/src/share/classes/sun/jvm/hotspot/code/NMethod.java
index e5b0a7271..a6641dd16 100644
--- a/agent/src/share/classes/sun/jvm/hotspot/code/NMethod.java
+++ b/agent/src/share/classes/sun/jvm/hotspot/code/NMethod.java
@@ -35,7 +35,6 @@ import sun.jvm.hotspot.utilities.*;
public class NMethod extends CodeBlob {
private static long pcDescSize;
- private static CIntegerField zombieInstructionSizeField;
private static sun.jvm.hotspot.types.OopField methodField;
/** != InvocationEntryBci if this nmethod is an on-stack replacement method */
private static CIntegerField entryBCIField;
@@ -88,7 +87,6 @@ public class NMethod extends CodeBlob {
private static void initialize(TypeDataBase db) {
Type type = db.lookupType("nmethod");
- zombieInstructionSizeField = type.getCIntegerField("_zombie_instruction_size");
methodField = type.getOopField("_method");
entryBCIField = type.getCIntegerField("_entry_bci");
osrLinkField = type.getAddressField("_osr_link");