fxlibc/include/target/vhex-generic/bits/waitflags.h

10 lines
295 B
C
Raw Normal View History

2021-05-09 23:00:11 +02:00
#ifndef __BITS_WAITFLAGS_H__
# define __BITS_WAITFLAGS_H__
2020-09-17 19:27:01 +02:00
/* 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. */
2021-05-09 23:00:11 +02:00
#endif /*__BITS_WAITFLAGS_H__*/