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