projects
/
deliverable
/
binutils-gdb.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
2000-04-26 Michael Snyder <msnyder@seadog.cygnus.com>
[deliverable/binutils-gdb.git]
/
libiberty
/
waitpid.c
1
int
2
waitpid
(
pid
,
stat_loc
,
options
)
3
int
pid
, *
stat_loc
,
options
;
4
{
5
for
(;;)
6
{
7
int
wpid
=
wait
(
stat_loc
);
8
if
(
wpid
==
pid
||
wpid
== -
1
)
9
return
wpid
;
10
}
11
}
This page took
0.030993 seconds
and
4
git commands to generate.