summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew John Hughes <gnu_andrew@member.fsf.org>2008-07-07 03:11:43 +0000
committerAndrew John Hughes <gnu_andrew@member.fsf.org>2008-07-07 03:11:43 +0000
commit112b91abbfe3459c2286610f6f7fd28f7bdac930 (patch)
tree0692e14df1255a98206b047768f7c5be7a31f07c
parent784d9f65c1eef6836887ed03817f4d64e029785f (diff)
downloadclasspath-112b91abbfe3459c2286610f6f7fd28f7bdac930.tar.gz
PRclasspath/36677: Add missing write
2008-07-07 Andrew John Hughes <gnu_andrew@member.fsf.org> * THANKYOU: Added Byeogncheol. 2008-07-07 Byeogncheol Lee <lineonking@gmail.com> PR classpath/36677: * gnu/classpath/jdwp/processor/VirtualMachineCommandSet.java: (executeTopLevelThreadGroups(ByteBuffer,DataOutputStream)): Add missing write.
-rw-r--r--ChangeLog11
-rw-r--r--THANKYOU1
-rw-r--r--gnu/classpath/jdwp/processor/VirtualMachineCommandSet.java2
3 files changed, 13 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 453d73d48..61c21523c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,16 @@
2008-07-07 Andrew John Hughes <gnu_andrew@member.fsf.org>
+ * THANKYOU: Added Byeogncheol.
+
+2008-07-07 Byeogncheol Lee <lineonking@gmail.com>
+
+ PR classpath/36677:
+ * gnu/classpath/jdwp/processor/VirtualMachineCommandSet.java:
+ (executeTopLevelThreadGroups(ByteBuffer,DataOutputStream)):
+ Add missing write.
+
+2008-07-07 Andrew John Hughes <gnu_andrew@member.fsf.org>
+
* java/text/DateFormatSymbols.java:
(getZoneStrings(ResourceBundle,Locale)):
Pad arrays smaller than 5 with empty strings.
diff --git a/THANKYOU b/THANKYOU
index 036bd0857..21e75c84e 100644
--- a/THANKYOU
+++ b/THANKYOU
@@ -26,6 +26,7 @@ Andrew Haley (aph@redhat.com)
Steven Hugg (hugg@pobox.com)
jockey@aromasoft.com
Isaac Jones (ijones@cis.ohio-state.edu)
+Byeogncheol Lee (lineonking@gmail.com)
Oskar Liljeblad (osk@hem.passagen.se)
Trevor Linton (tlinton@xmission.com)
Casey Marshall (rsdio@metastatic.org)
diff --git a/gnu/classpath/jdwp/processor/VirtualMachineCommandSet.java b/gnu/classpath/jdwp/processor/VirtualMachineCommandSet.java
index e2703908b..b6e0cfeb8 100644
--- a/gnu/classpath/jdwp/processor/VirtualMachineCommandSet.java
+++ b/gnu/classpath/jdwp/processor/VirtualMachineCommandSet.java
@@ -264,7 +264,7 @@ public class VirtualMachineCommandSet
ThreadGroup root = getRootThreadGroup(jdwpGroup);
os.writeInt(1); // Just one top level group allowed?
- idMan.getObjectId(root);
+ idMan.getObjectId(root).write(os);
}
private void executeDispose(ByteBuffer bb, DataOutputStream os)