agent/src/share/classes/sun/jvm/hotspot/runtime/VM.java
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File 6706829 Cdiff agent/src/share/classes/sun/jvm/hotspot/runtime/VM.java

agent/src/share/classes/sun/jvm/hotspot/runtime/VM.java

Print this page

        

*** 619,628 **** --- 619,633 ---- bytes = new Bytes(debugger.getMachineDescription()); } return bytes; } + /** Returns true if this is a isBigEndian, false otherwise */ + public boolean isBigEndian() { + return isBigEndian; + } + /** Returns true if this is a "core" build, false if either C1 or C2 is present */ public boolean isCore() { return (!(usingClientCompiler || usingServerCompiler)); }
agent/src/share/classes/sun/jvm/hotspot/runtime/VM.java
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File