Edit File by line
/home/barbar84/public_h.../wp-conte.../plugins/sujqvwi/ShExBy/shex_roo.../usr/include/linux
File: wait.h
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
[0] Fix | Delete
#ifndef _LINUX_WAIT_H
[1] Fix | Delete
#define _LINUX_WAIT_H
[2] Fix | Delete
[3] Fix | Delete
#define WNOHANG 0x00000001
[4] Fix | Delete
#define WUNTRACED 0x00000002
[5] Fix | Delete
#define WSTOPPED WUNTRACED
[6] Fix | Delete
#define WEXITED 0x00000004
[7] Fix | Delete
#define WCONTINUED 0x00000008
[8] Fix | Delete
#define WNOWAIT 0x01000000 /* Don't reap, just poll status. */
[9] Fix | Delete
[10] Fix | Delete
#define __WNOTHREAD 0x20000000 /* Don't wait on children of other threads in this group */
[11] Fix | Delete
#define __WALL 0x40000000 /* Wait on all children, regardless of type */
[12] Fix | Delete
#define __WCLONE 0x80000000 /* Wait only on non-SIGCHLD children */
[13] Fix | Delete
[14] Fix | Delete
/* First argument to waitid: */
[15] Fix | Delete
#define P_ALL 0
[16] Fix | Delete
#define P_PID 1
[17] Fix | Delete
#define P_PGID 2
[18] Fix | Delete
#define P_PIDFD 3
[19] Fix | Delete
[20] Fix | Delete
[21] Fix | Delete
#endif /* _LINUX_WAIT_H */
[22] Fix | Delete
[23] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function