mirror of
https://git.planet-casio.com/Vhex-Kernel-Core/fxlibc.git
synced 2025-01-01 14:33:36 +01:00
9 lines
295 B
C
9 lines
295 B
C
#ifndef __BITS_WAITFLAGS_H__
|
|
# define __BITS_WAITFLAGS_H__
|
|
|
|
/* Bits in the third argument to `waitpid'. */
|
|
#define WNOHANG 1 /* Don't block waiting. */
|
|
#define WUNTRACED 2 /* Report status of stopped child. */
|
|
#define WCONTINUED 3 /* Report continued child. */
|
|
|
|
#endif /*__BITS_WAITFLAGS_H__*/
|