linux/include/uapi/linux/wait.h

/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
#ifndef _UAPI_LINUX_WAIT_H
#define _UAPI_LINUX_WAIT_H

#define WNOHANG
#define WUNTRACED
#define WSTOPPED
#define WEXITED
#define WCONTINUED
#define WNOWAIT

#define __WNOTHREAD
#define __WALL
#define __WCLONE

/* First argument to waitid: */
#define P_ALL
#define P_PID
#define P_PGID
#define P_PIDFD


#endif /* _UAPI_LINUX_WAIT_H */