diff options
author | Daniel Jacobowitz <drow@false.org> | 2003-06-05 14:26:58 +0000 |
---|---|---|
committer | Daniel Jacobowitz <drow@false.org> | 2003-06-05 14:26:58 +0000 |
commit | e5379b03cf80d6b0bd9a8d7dd03e2220a61956a2 (patch) | |
tree | 8af8826fb577e84036d89c410cebe502dac302ce /gdb/gdbserver/target.h | |
parent | c82b20e4573561011a801e436bcca84cfa999113 (diff) | |
download | gdb-e5379b03cf80d6b0bd9a8d7dd03e2220a61956a2.zip gdb-e5379b03cf80d6b0bd9a8d7dd03e2220a61956a2.tar.gz gdb-e5379b03cf80d6b0bd9a8d7dd03e2220a61956a2.tar.bz2 |
* linux-low.c (linux_wait_for_event): Correct comment typos.
(linux_resume_one_process): Call check_removed_breakpoint.
(linux_send_signal): New function.
(linux_target_ops): Add linux_send_signal.
* remote-utils.c (putpkt, input_interrupt): Use send_signal instead
of kill.
* target.h (struct target_ops): Add send_signal.
Diffstat (limited to 'gdb/gdbserver/target.h')
-rw-r--r-- | gdb/gdbserver/target.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gdb/gdbserver/target.h b/gdb/gdbserver/target.h index e554c0a..c09ac8d 100644 --- a/gdb/gdbserver/target.h +++ b/gdb/gdbserver/target.h @@ -104,6 +104,9 @@ struct target_ops symbols. */ void (*look_up_symbols) (void); + + /* Send a signal to the inferior process, however is appropriate. */ + void (*send_signal) (int); }; extern struct target_ops *the_target; |