URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [branches/] [oc/] [gdb-5.0/] [libiberty/] [waitpid.c] - Rev 1771
Go to most recent revision | Compare with Previous | Blame | View Log
int waitpid (pid, stat_loc, options) int pid, *stat_loc, options; { for (;;) { int wpid = wait(stat_loc); if (wpid == pid || wpid == -1) return wpid; } }
Go to most recent revision | Compare with Previous | Blame | View Log