Changeset 609 for branches/GNU/src/binutils/libiberty/waitpid.c
- Timestamp:
- Aug 16, 2003, 6:59:22 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GNU/src/binutils/libiberty/waitpid.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.1.1.2
r608 r609 1 /* 2 3 @deftypefn Supplemental int waitpid (int @var{pid}, int *@var{status}, int) 4 5 This is a wrapper around the @code{wait} function. Any ``special'' 6 values of @var{pid} depend on your implementation of @code{wait}, as 7 does the return value. The third argument is unused in @libib{}. 8 9 @end deftypefn 10 11 */ 12 1 13 #ifdef HAVE_CONFIG_H 2 14 #include "config.h" 3 15 #endif 16 17 /* On some systems (such as WindISS), you must include <sys/types.h> 18 to get the definition of "pid_t" before you include <sys/wait.h>. */ 19 #include <sys/types.h> 20 4 21 #ifdef HAVE_SYS_WAIT_H 5 22 #include <sys/wait.h> 6 23 #endif 7 24 8 int25 pid_t 9 26 waitpid (pid, stat_loc, options) 10 int pid, *stat_loc, options; 27 pid_t pid; 28 int *stat_loc, options; 11 29 { 12 30 for (;;) -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.