* 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.
This commit is contained in:
Daniel Jacobowitz
2003-06-05 14:26:58 +00:00
parent c82b20e457
commit e5379b03cf
4 changed files with 36 additions and 8 deletions

View File

@@ -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;