Add bjdwp tool to Barry project.
commitcbb649482de822079df2b1da077935ab97c8b821
authorNicolas VIVIEN <nicolas@vivien.fr>
Fri, 7 Aug 2009 16:24:44 +0000 (7 18:24 +0200)
committerChris Frey <cdfrey@foursquare.net>
Mon, 31 Aug 2009 23:13:44 +0000 (31 19:13 -0400)
treea674a63733136a2185d2ebfc1fd48f6063e8a832
parent797cf07565d48e2789d6bad31f1e07ddd26d44c1
Add bjdwp tool to Barry project.

For the moment, bjdwp isn't built in the same time that barry,
barrybackup or opensync-plugin.

You have to build and install barry and barry library, then go into
the bjdwp directory :
$ cd bjdwp
$ ./configure
$ make
$ ./build/bin/bjdwp localhost 8000
$ jdb -connect com.sun.jdi.SocketAttach:hostname=localhost,port=8000
36 files changed:
bjdwp/CMakeLists.txt [new file with mode: 0644]
bjdwp/doc/README [new file with mode: 0644]
bjdwp/doc/jdwp-class.txt [new file with mode: 0644]
bjdwp/doc/jdwp-connection.txt [new file with mode: 0644]
bjdwp/doc/jdwp-protocol.txt [new file with mode: 0644]
bjdwp/doc/jdwp-resume.txt [new file with mode: 0644]
bjdwp/doc/jdwp-suspend.txt [new file with mode: 0644]
bjdwp/sample/BarryDemo.cod [new file with mode: 0644]
bjdwp/sample/BarryDemo.cso [new file with mode: 0644]
bjdwp/sample/BarryDemo.debug [new file with mode: 0644]
bjdwp/sample/BarryDemo.debug.txt [new file with mode: 0644]
bjdwp/sample/BarryDemo.jad [new file with mode: 0644]
bjdwp/sample/BarryDemo.jar [new file with mode: 0644]
bjdwp/sample/BarryDemo.java [new file with mode: 0644]
bjdwp/sample/BarryDemo.rapc [new file with mode: 0644]
bjdwp/sample/build.sh [new file with mode: 0755]
bjdwp/sample/test.txt [new file with mode: 0644]
bjdwp/src/CMakeLists.txt [new file with mode: 0644]
bjdwp/src/data.cc [new file with mode: 0644]
bjdwp/src/data.h [new file with mode: 0644]
bjdwp/src/debug.h [new file with mode: 0644]
bjdwp/src/handler.cc [new file with mode: 0644]
bjdwp/src/jdwp.cc [new file with mode: 0644]
bjdwp/src/jdwp.h [new file with mode: 0644]
bjdwp/src/manager.cc [new file with mode: 0644]
bjdwp/src/message.cc [new file with mode: 0644]
bjdwp/src/message.h [new file with mode: 0644]
bjdwp/src/protocol.h [new file with mode: 0644]
bjdwp/src/server.cc [new file with mode: 0644]
bjdwp/tools/CMakeLists.txt [new file with mode: 0644]
bjdwp/tools/main.cc [new file with mode: 0644]
bjdwp/utils/CMakeLists.txt [new file with mode: 0644]
bjdwp/utils/codinfo.cc [new file with mode: 0644]
bjdwp/utils/main.cc [new file with mode: 0644]
bjdwp/utils/parser.cc [new file with mode: 0644]
bjdwp/utils/parser.h [new file with mode: 0644]