mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-26 01:07:52 +00:00
2002-02-20 Daniel Jacobowitz <drow@mvista.com>
* gdbserver/linux-low.c (mywait): Change argument to waitpid
to be an integer instead of a `union wait'.
This commit is contained in:
@@ -1,3 +1,8 @@
|
||||
2002-02-20 Daniel Jacobowitz <drow@mvista.com>
|
||||
|
||||
* gdbserver/linux-low.c (mywait): Change argument to waitpid
|
||||
to be an integer instead of a `union wait'.
|
||||
|
||||
2002-02-20 Daniel Jacobowitz <drow@mvista.com>
|
||||
|
||||
* mips-linux-nat.c: Call the operating system GNU/Linux.
|
||||
|
||||
@@ -109,10 +109,10 @@ unsigned char
|
||||
mywait (char *status)
|
||||
{
|
||||
int pid;
|
||||
union wait w;
|
||||
int w;
|
||||
|
||||
enable_async_io ();
|
||||
pid = waitpid (inferior_pid, (int *)&w, 0);
|
||||
pid = waitpid (inferior_pid, &w, 0);
|
||||
disable_async_io ();
|
||||
if (pid != inferior_pid)
|
||||
perror_with_name ("wait");
|
||||
|
||||
Reference in New Issue
Block a user