|
Message
From: cvs at opencores.org<cvs@o...>
Date: Thu Nov 29 15:59:48 CET 2007
Subject: [cvs-checkins] MODIFIED: jop ...
Date: 00/07/11 29:15:59 Modified: jop/java/tools/src/com/jopdesign/debug/jdwp JOPDebugInterface.java Log: Small change due to changes in the debug channel. Methods changed: 178: private void resumeAllThreads() throws IOException 241: public void exitJavaMachine(int exitCode) throws IOException 675: private void requestThreadResume(long objectId) throws IOException Revision Changes Path 1.2 jop/java/tools/src/com/jopdesign/debug/jdwp/JOPDebugInterface.java http://www.opencores.org/cvsweb.shtml/jop/java/tools/src/com/jopdesign/debug/jdwp/JOPDebugInterface.java.diff?r1=1.1&r2=1.2 (In the diff below, changes in quantity of whitespace are not shown.) Index: JOPDebugInterface.java =================================================================== RCS file: /cvsroot/paulo/jop/java/tools/src/com/jopdesign/debug/jdwp/JOPDebugInterface.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -b -r1.1 -r1.2 --- JOPDebugInterface.java 3 Oct 2007 00:50:33 -0000 1.1 +++ JOPDebugInterface.java 29 Nov 2007 14:59:48 -0000 1.2 @@ -180,7 +180,7 @@ if(isSuspended()) { threadSuspendCounter = 0; - jopDebugChannel.resume(); + jopDebugChannel.sendResumeCommand(); } } @@ -241,7 +241,7 @@ public void exitJavaMachine(int exitCode) throws IOException { - jopDebugChannel.requestExit(exitCode); + jopDebugChannel.sendExitCommand(exitCode); } public int createString(String data) @@ -674,7 +674,7 @@ private void requestThreadResume(long objectId) throws IOException { - jopDebugChannel.resume(); + jopDebugChannel.sendResumeCommand(); } public int getThreadStatus(long objectId) throws JDWPException
|
 |