aboutsummaryrefslogtreecommitdiff
path: root/gdb/gdbserver/target.h
diff options
context:
space:
mode:
authorJan Kratochvil <jan.kratochvil@redhat.com>2010-07-25 10:15:54 +0000
committerJan Kratochvil <jan.kratochvil@redhat.com>2010-07-25 10:15:54 +0000
commit30d5032895e63800c5088101fb662b6b293e224a (patch)
tree64af2a830143e09991efe04b981a06046af35d66 /gdb/gdbserver/target.h
parent857d11d04f4da0befb66d98a7a7b7c98ad4c92e5 (diff)
downloadgdb-30d5032895e63800c5088101fb662b6b293e224a.zip
gdb-30d5032895e63800c5088101fb662b6b293e224a.tar.gz
gdb-30d5032895e63800c5088101fb662b6b293e224a.tar.bz2
gdb/gdbserver/
* server.c (handle_target_event): Use target_signal_to_host for resume_info.sig initialization. * target.h (struct thread_resume) <sig>: New comment.
Diffstat (limited to 'gdb/gdbserver/target.h')
-rw-r--r--gdb/gdbserver/target.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/gdbserver/target.h b/gdb/gdbserver/target.h
index e974ecb..1f9f921 100644
--- a/gdb/gdbserver/target.h
+++ b/gdb/gdbserver/target.h
@@ -53,7 +53,8 @@ struct thread_resume
/* If non-zero, send this signal when we resume, or to stop the
thread. If stopping a thread, and this is 0, the target should
stop the thread however it best decides to (e.g., SIGSTOP on
- linux; SuspendThread on win32). */
+ linux; SuspendThread on win32). This is a host signal value (not
+ enum target_signal). */
int sig;
};