configure.in (MAKEINFO, PERL): Detect these.
* configure.in (MAKEINFO, PERL): Detect these.
(--enable-maintainer-mode): Add.
* configure: Regenerate.
* Makefile.in (MAKEINFO, PERL): Define.
(libiberty.info, libiberty.dvi, libiberty.html): New.
(CFILES): Add bsearch.c.
(CONFIGURED_OFILES): New, list of objects configure might add.
(maint-missing, maint-buildall): New, for maintainers only.
(clean, mostlyclean): Add info/dvi/html files.
* libiberty.texi, copying-lib.texi, obstacks.texi, functions.texi: New.
* gather-docs: New, for maintainers.
* maint-tool: New, for maintainers.
* alloca.c, atexit.c, basename.c, bcmp.c, bcopy.c, bsearch.c,
bzero.c, calloc.c, clock.c, configure.in, configure, getcwd.c,
getpagesize.c, getpwd.c, index.c, memchr.c, memcmp.c, memcpy.c,
memmove.c, memset.c, putenv.c, rename.c, rindex.c, setenv.c,
sigsetmask.c, strcasecmp.c, strchr.c, strdup.c, strerror.c,
strncasecmp.c, strncmp.c, strrchr.c, strstr.c, strtod.c, strtol.c,
tmpnam.c, vfork.c, vprintf.c, waitpid.c, xatexit.c, xexit.c,
xmalloc.c, xmemdup.c, xstrdup.c, xstrerror.c: Add or update
documentation.
Co-Authored-By: Phil Edwards <pedwards@disaster.jaj.com>
From-SVN: r45828
2001-09-26 20:16:17 +02:00
|
|
|
/*
|
|
|
|
|
|
|
|
@deftypefn Supplemental int waitpid (int @var{pid}, int *@var{status}, int)
|
|
|
|
|
|
|
|
This is a wrapper around the @code{wait} function. Any ``special''
|
|
|
|
values of @var{pid} depend on your implementation of @code{wait}, as
|
|
|
|
does the return value. The third argument is unused in @libib{}.
|
|
|
|
|
|
|
|
@end deftypefn
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2000-07-27 01:23:24 +02:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
2005-04-02 21:57:12 +02:00
|
|
|
#include "ansidecl.h"
|
2002-05-07 20:50:53 +02:00
|
|
|
|
|
|
|
/* On some systems (such as WindISS), you must include <sys/types.h>
|
|
|
|
to get the definition of "pid_t" before you include <sys/wait.h>. */
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
2000-07-27 01:23:24 +02:00
|
|
|
#ifdef HAVE_SYS_WAIT_H
|
|
|
|
#include <sys/wait.h>
|
|
|
|
#endif
|
|
|
|
|
2002-05-07 20:50:53 +02:00
|
|
|
pid_t
|
2005-04-02 21:57:12 +02:00
|
|
|
waitpid (pid_t pid, int *stat_loc, int options ATTRIBUTE_UNUSED)
|
1997-08-22 00:57:35 +02:00
|
|
|
{
|
|
|
|
for (;;)
|
|
|
|
{
|
|
|
|
int wpid = wait(stat_loc);
|
|
|
|
if (wpid == pid || wpid == -1)
|
|
|
|
return wpid;
|
|
|
|
}
|
|
|
|
}
|