diff options
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 57 |
1 files changed, 57 insertions, 0 deletions
@@ -1,3 +1,60 @@ +10-12-31 Cyrille Bagard <nocbos@gmail.com> + + * configure.ac: + Add the new Makefiles from the 'src/debug/jdwp{,misc,sets}' directories + to AC_CONFIG_FILES. + + * src/common/endianness.c: + * src/common/endianness.h: + Write values using LE or BE encoding. + + * src/common/Makefile.am: + Add net.[ch] to libcommon_la_SOURCES. + + * src/common/net.c: + * src/common/net.h: + Provide a generic way to connect to a server via TCP. + + * src/debug/debugger.h: + Rename DGT_COUNT into DGT_COUNT2. + + * src/debug/jdwp/debugger.c: + * src/debug/jdwp/debugger.h: + * src/debug/jdwp/jdwp_def.h: + * src/debug/jdwp/Makefile.am: + * src/debug/jdwp/misc/header.c: + * src/debug/jdwp/misc/header.h: + * src/debug/jdwp/misc/Makefile.am: + * src/debug/jdwp/misc/types.c: + * src/debug/jdwp/misc/types.h: + * src/debug/jdwp/packet.c: + * src/debug/jdwp/packet.h: + * src/debug/jdwp/sets/list.c: + * src/debug/jdwp/sets/list.h: + * src/debug/jdwp/sets/Makefile.am: + * src/debug/jdwp/sets/vm.c: + * src/debug/jdwp/sets/vm.h: + * src/debug/jdwp/tcp.c: + * src/debug/jdwp/tcp.h: + New entries: support a first basic packet of the Java Debug Wire Protocol. + + * src/debug/Makefile.am: + Add the packet-int.h, packet.[ch], stream-int.h and stream.[ch] files + to libdebug_la_SOURCES. Add jdwp/libdebugjdwp.la to libdebug_la_LIBADD. + + * src/debug/packet.c: + * src/debug/packet.h: + * src/debug/packet-int.h: + New entries: define a generic packet for debugging communications. + + * src/debug/remgdb/tcp.c: + Update code relative to connect_via_tcp(). + + * src/debug/stream.c: + * src/debug/stream.h: + * src/debug/stream-int.h: + New entries: define a generic handler for debugging communications. + 10-12-21 Cyrille Bagard <nocbos@gmail.com> * configure.ac: |