From 1855d4a026ac352af2b703df28b9476ba10eb089 Mon Sep 17 00:00:00 2001 From: cvs2svn Date: Thu, 12 Jun 2008 21:30:34 +0000 Subject: This commit was manufactured by cvs2svn to create branch 'R3_4_maintenance'. Sprout from master 2008-06-12 21:30:31 UTC Darin Wright 'Bug 236922 - external tool builder does not run' Delete: org.eclipse.debug.examples.core/pdavm/docs/protocol.html org.eclipse.debug.examples.core/pdavm/pda.pl org.eclipse.debug.examples.core/pdavm/tests/vmtests.pl org.eclipse.debug.examples.ui/src/org/eclipse/debug/examples/ui/pda/views/PopAction.java org.eclipse.debug.examples.ui/src/org/eclipse/debug/examples/ui/pda/views/PushAction.java--- .../pdavm/docs/protocol.html | 198 --------------------- 1 file changed, 198 deletions(-) delete mode 100644 org.eclipse.debug.examples.core/pdavm/docs/protocol.html (limited to 'org.eclipse.debug.examples.core/pdavm/docs/protocol.html') diff --git a/org.eclipse.debug.examples.core/pdavm/docs/protocol.html b/org.eclipse.debug.examples.core/pdavm/docs/protocol.html deleted file mode 100644 index 9e2b92749..000000000 --- a/org.eclipse.debug.examples.core/pdavm/docs/protocol.html +++ /dev/null @@ -1,198 +0,0 @@ - - - - - PDA Debugger Protocol Reference - - - -

PDA Debugger Protocol Reference

- -

clear

-Clears any breakpoint set on given line -
-   C: clear {line}
-   R: ok
-
- - -

data

-Retrieves data stack information -
-   C: data
-   R: {value 1}|{value 2}|{value 3}|...|
-
- - -

drop

-Returns from the current frame without executing the rest of instructions. - -
-   C: drop
-   R: ok
-   E: resumed drop
-   E: suspended drop
-
- - -

eval

-Sets what events cause the execution to stop. - -
-   C: eval {instruction}%20{parameter}|{instruction}%20{parameter}|...
-   R: ok
-   E: resume client
-   E: evalresult result
-   E: suspended eval
-
- - -

eventstop

-Sets what events cause the execution to stop. - -
-   C: eventstop {event_name} {0|1}
-   R: ok
-   ...
-   E: suspended event {event_name}
-
- - -

exit

-Instructs the debugger to exit. - -
-   C: exit
-   R: ok
-
- - -

popdata

-Pops the top value from the data stack - -
-   C: popdata
-   R: ok
-
- - -

pushdata

-Pushes the given value on top of the data stack. - -
-   C: pushdata {value}
-   R: ok
-
- - -

resume

-Resumes the execution - -
-   C: resume
-   R: ok
-   E: resumed client
-
- - -

set

-Sets a breakpoint at given line - -
-   C: set {line_number}
-   R: ok
-   C: resume
-   E: resumed client
-   E: suspended breakpoint line_number
-
- - -

setdata

-Sets a data value in the data stack at the given location - -
-   C: setdata {index} {value}
-   R: ok
-
- - -

setvar

-Sets a variable value - -
-   C: setvar {frame_number} {variable} {value}
-   R: ok
-
- - -

stack

-Retrieves command stack information - -
-   C: stack
-   R: {file}|{line}|{function}|{var_1}|{var_2}|...{file}|{line}|{function}|{var_1}|{var_2}|......
-
- - -

step

-Executes next instruction - -
-   C: step
-   R: ok
-   E: resumed step
-   E: suspended step
-
- - -

stepreturn

-Executes instructions until the current subroutine is finished - -
-   C: stepreturn
-   R: ok
-   E: resumed step
-   E: suspended step
-
- - -

suspend

-Suspends execution - -
-   C: suspend
-   R: ok
-   E: suspended client
-
- - -

var

-Retrieves variable value - -
-   C: var {frame_number} {variable_name}
-   R: {variable_value}
-
- - -

watch

-Sets a watchpoint on a given variable - -
-   C: watch {function}::{variable_name} {watch_operation}
-   R: ok
-   C: resume
-   R: resumed client
-   E: suspended watch {watch_operation} {function}::{variable_name}
-
- -The watch_operation value can be: -
    -
  • 0 - no watch
  • -
  • 1 - read watch
  • -
  • 2 - write watch
  • -
  • 3 - both, etc.
  • -
- - -- cgit v1.2.3