* server.c (handle_v_kill): Pass signal_pid to

kill_inferior if multi_process is zero.
This commit is contained in:
Pierre Muller
2009-06-24 15:23:32 +00:00
parent 1307d6cd4a
commit 0f54c268db
2 changed files with 9 additions and 2 deletions

View File

@@ -1523,8 +1523,10 @@ handle_v_kill (char *own_buf)
{
int pid;
char *p = &own_buf[6];
pid = strtol (p, NULL, 16);
if (multi_process)
pid = strtol (p, NULL, 16);
else
pid = signal_pid;
if (pid != 0 && kill_inferior (pid) == 0)
{
last_status.kind = TARGET_WAITKIND_SIGNALLED;