* darwin-nat.c (darwin_stop_inferior): Pass 0 as options to
	darwin_wait (blocking wait).
	(darwin_kill_inferior): Likewise.
This commit is contained in:
Pedro Alves
2009-06-10 21:08:27 +00:00
parent 66852e9c4d
commit bbb2952039
2 changed files with 8 additions and 2 deletions

View File

@@ -688,7 +688,7 @@ darwin_stop_inferior (struct target_ops *ops, darwin_inferior *inf)
if (res != 0)
warning (_("cannot kill: %s\n"), safe_strerror (errno));
ptid = darwin_wait (ops, inferior_ptid, &wstatus);
ptid = darwin_wait (ops, inferior_ptid, &wstatus, 0);
gdb_assert (wstatus.kind = TARGET_WAITKIND_STOPPED);
}
@@ -720,7 +720,7 @@ darwin_kill_inferior (struct target_ops *ops)
kret = task_resume (darwin_inf->task);
MACH_CHECK_ERROR (kret);
ptid = darwin_wait (ops, inferior_ptid, &wstatus);
ptid = darwin_wait (ops, inferior_ptid, &wstatus, 0);
/* This double wait seems required... */
res = waitpid (darwin_inf->pid, &status, 0);