summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2010-12-31 11:49:34 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2010-12-31 11:49:34 (GMT)
commit651c94450df8619c26e26a133289dbaa197616f4 (patch)
tree1a81a2625687116d205cb5c6583497cb657f8460 /ChangeLog
parentdbec8e8af5f296f0b95cd9c07e7d96b1a4277137 (diff)
Supported a first basic packet of the Java Debug Wire Protocol.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@204 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog57
1 files changed, 57 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index d3dd823..149a683 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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: