NameDateSize

..14-Feb-20134 KiB

ExpandBuf.cpp14-Feb-20133.8 KiB

ExpandBuf.h14-Feb-20131.9 KiB

Jdwp.h14-Feb-20137.8 KiB

JdwpAdb.cpp14-Feb-201321 KiB

JdwpConstants.cpp14-Feb-20138.3 KiB

JdwpConstants.h14-Feb-20137.9 KiB

JdwpEvent.cpp14-Feb-201338.6 KiB

JdwpEvent.h14-Feb-20133.4 KiB

JdwpHandler.cpp14-Feb-201360.4 KiB

JdwpHandler.h14-Feb-20131.3 KiB

JdwpMain.cpp14-Feb-201312.9 KiB

JdwpPriv.h14-Feb-20135.3 KiB

JdwpSocket.cpp14-Feb-201324.3 KiB

README.txt14-Feb-2013647

README.txt

1Java Debug Wire Protocol support
2
3This is a reasonably complete implementation, but only messages that are
4actually generated by debuggers have been implemented.  The reasoning
5behind this is that it's better to leave a call unimplemented than have
6something that appears implemented but has never been tested.
7
8An attempt has been made to keep the implementation distinct from the VM,
9with Debugger.c acting as a sort of portability layer, so that the code
10might be useful in other projects.  Once you get multiple simultaneous
11events and debugger requests with thread suspension bouncing around,
12though, it's difficult to keep things "generic".
13