summaryrefslogtreecommitdiff
path: root/src/debug/jdwp/sets/list.c
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2012-02-18 16:41:31 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2012-02-18 16:41:31 (GMT)
commitdeb012d919ea6c5e79702a39a03a85be2ffcf406 (patch)
treeae9cee108d05e0a6674d8617a08d0ea09165443c /src/debug/jdwp/sets/list.c
parent73605bffb935fc51a52be1936426211e31dd898a (diff)
Retrieved the frames stack from the running process.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@235 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/debug/jdwp/sets/list.c')
-rw-r--r--src/debug/jdwp/sets/list.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/debug/jdwp/sets/list.c b/src/debug/jdwp/sets/list.c
index 84c6ac0..ba96917 100644
--- a/src/debug/jdwp/sets/list.c
+++ b/src/debug/jdwp/sets/list.c
@@ -87,6 +87,13 @@ static jdwp_command _commands[][256] = {
.free_set_payload = (free_jdwp_payload_fc)NULL,
.get_payload = (get_jdwp_payload_fc)get_jdwp_thread_name,
.free_got_payload = (free_jdwp_payload_fc)free_jdwp_thread_name_reply
+ },
+
+ [JDWP_CMD_THREAD_FRAMES] = {
+ .set_payload = (set_jdwp_payload_fc)set_jdwp_thread_frames,
+ .free_set_payload = (free_jdwp_payload_fc)NULL,
+ .get_payload = (get_jdwp_payload_fc)get_jdwp_thread_frames,
+ .free_got_payload = (free_jdwp_payload_fc)free_jdwp_thread_frames_reply
}
}