hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/remote/RemoteDebuggerServer.java
changeset 360 21d113ecbf6a
parent 1 489c9b5090e2
child 670 ddf3e9583f2f
equal deleted inserted replaced
357:f4edb0d9f109 360:21d113ecbf6a
   112 
   112 
   113   public long getJShortSize() throws RemoteException {
   113   public long getJShortSize() throws RemoteException {
   114     return debugger.getJShortSize();
   114     return debugger.getJShortSize();
   115   }
   115   }
   116 
   116 
       
   117   public long getHeapBase() throws RemoteException {
       
   118     return debugger.getHeapBase();
       
   119   }
       
   120 
       
   121   public long getHeapOopSize() throws RemoteException {
       
   122     return debugger.getHeapOopSize();
       
   123   }
       
   124 
       
   125   public long getLogMinObjAlignmentInBytes() throws RemoteException {
       
   126     return debugger.getLogMinObjAlignmentInBytes();
       
   127   }
   117   public boolean   areThreadsEqual(long addrOrId1, boolean isAddress1,
   128   public boolean   areThreadsEqual(long addrOrId1, boolean isAddress1,
   118                                    long addrOrId2, boolean isAddress2) throws RemoteException {
   129                                    long addrOrId2, boolean isAddress2) throws RemoteException {
   119     ThreadProxy t1 = getThreadProxy(addrOrId1, isAddress1);
   130     ThreadProxy t1 = getThreadProxy(addrOrId1, isAddress1);
   120     ThreadProxy t2 = getThreadProxy(addrOrId2, isAddress2);
   131     ThreadProxy t2 = getThreadProxy(addrOrId2, isAddress2);
   121     return t1.equals(t2);
   132     return t1.equals(t2);