2023-03-23 22:42:24 +01:00
|
|
|
/* bits/waitpid.h: Constants for waitpid(). */
|
|
|
|
|
|
|
|
#ifndef _BITS_WAITPID_H
|
|
|
|
#define _BITS_WAITPID_H
|
|
|
|
|
2023-07-10 20:16:06 +02:00
|
|
|
#define _SIGBIT 0x100
|
|
|
|
|
2023-03-23 22:42:24 +01:00
|
|
|
#define WNOHANG 1
|
2023-10-15 13:09:46 +02:00
|
|
|
#define WUNTRACED 2 // Unused.
|
2023-03-23 22:42:24 +01:00
|
|
|
|
|
|
|
#endif
|