2001-03-05 22:29:24 +01:00
|
|
|
/* sys/wait.h
|
|
|
|
|
|
|
|
This file is part of Cygwin.
|
|
|
|
|
|
|
|
This software is a copyrighted work licensed under the terms of the
|
|
|
|
Cygwin license. Please consult the file "CYGWIN_LICENSE" for
|
|
|
|
details. */
|
|
|
|
|
2000-02-17 20:38:33 +01:00
|
|
|
#ifndef _SYS_WAIT_H
|
|
|
|
#define _SYS_WAIT_H
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/resource.h>
|
2006-06-12 16:25:05 +02:00
|
|
|
#include <cygwin/wait.h>
|
2000-02-17 20:38:33 +01:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2018-08-24 20:57:47 +02:00
|
|
|
pid_t wait (int *__status);
|
|
|
|
pid_t waitpid (pid_t __pid, int *__status, int __options);
|
|
|
|
pid_t wait3 (int *__status, int __options, struct rusage *__rusage);
|
|
|
|
pid_t wait4 (pid_t __pid, int *__status, int __options, struct rusage *__rusage);
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2019-09-03 12:45:55 +02:00
|
|
|
#ifdef _COMPILING_NEWLIB
|
|
|
|
pid_t _wait (int *);
|
|
|
|
#endif
|
|
|
|
|
2000-02-17 20:38:33 +01:00
|
|
|
#ifdef __cplusplus
|
2011-10-06 18:02:37 +02:00
|
|
|
}
|
2000-02-17 20:38:33 +01:00
|
|
|
#endif
|
|
|
|
|
2011-10-06 18:02:37 +02:00
|
|
|
#endif /* _SYS_WAIT_H */
|