Ignore:
Timestamp:
Aug 16, 2003, 6:59:22 PM (22 years ago)
Author:
bird
Message:

binutils v2.14 - offical sources.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/GNU/src/binutils/libiberty/waitpid.c

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.1.1.2
    r608 r609  
     1/*
     2
     3@deftypefn Supplemental int waitpid (int @var{pid}, int *@var{status}, int)
     4
     5This is a wrapper around the @code{wait} function.  Any ``special''
     6values of @var{pid} depend on your implementation of @code{wait}, as
     7does the return value.  The third argument is unused in @libib{}.
     8
     9@end deftypefn
     10
     11*/
     12
    113#ifdef HAVE_CONFIG_H
    214#include "config.h"
    315#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
    421#ifdef HAVE_SYS_WAIT_H
    522#include <sys/wait.h>
    623#endif
    724
    8 int
     25pid_t
    926waitpid (pid, stat_loc, options)
    10         int pid, *stat_loc, options;
     27     pid_t pid;
     28     int *stat_loc, options;
    1129{
    1230  for (;;)
Note: See TracChangeset for help on using the changeset viewer.