Edit File by line
/home/barbar84/www/wp-conte.../plugins/sujqvwi/AnonR/smanonr..../usr/include/bits
File: waitflags.h
/* Definitions of flag bits for `waitpid' et al.
[0] Fix | Delete
Copyright (C) 1992-2018 Free Software Foundation, Inc.
[1] Fix | Delete
This file is part of the GNU C Library.
[2] Fix | Delete
[3] Fix | Delete
The GNU C Library is free software; you can redistribute it and/or
[4] Fix | Delete
modify it under the terms of the GNU Lesser General Public
[5] Fix | Delete
License as published by the Free Software Foundation; either
[6] Fix | Delete
version 2.1 of the License, or (at your option) any later version.
[7] Fix | Delete
[8] Fix | Delete
The GNU C Library is distributed in the hope that it will be useful,
[9] Fix | Delete
but WITHOUT ANY WARRANTY; without even the implied warranty of
[10] Fix | Delete
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
[11] Fix | Delete
Lesser General Public License for more details.
[12] Fix | Delete
[13] Fix | Delete
You should have received a copy of the GNU Lesser General Public
[14] Fix | Delete
License along with the GNU C Library; if not, see
[15] Fix | Delete
<http://www.gnu.org/licenses/>. */
[16] Fix | Delete
[17] Fix | Delete
#if !defined _SYS_WAIT_H && !defined _STDLIB_H
[18] Fix | Delete
# error "Never include <bits/waitflags.h> directly; use <sys/wait.h> instead."
[19] Fix | Delete
#endif
[20] Fix | Delete
[21] Fix | Delete
[22] Fix | Delete
/* Bits in the third argument to `waitpid'. */
[23] Fix | Delete
#define WNOHANG 1 /* Don't block waiting. */
[24] Fix | Delete
#define WUNTRACED 2 /* Report status of stopped children. */
[25] Fix | Delete
[26] Fix | Delete
/* Bits in the fourth argument to `waitid'. */
[27] Fix | Delete
#if defined __USE_XOPEN_EXTENDED || defined __USE_XOPEN2K8
[28] Fix | Delete
# define WSTOPPED 2 /* Report stopped child (same as WUNTRACED). */
[29] Fix | Delete
# define WEXITED 4 /* Report dead child. */
[30] Fix | Delete
# define WCONTINUED 8 /* Report continued child. */
[31] Fix | Delete
# define WNOWAIT 0x01000000 /* Don't reap, just poll status. */
[32] Fix | Delete
#endif
[33] Fix | Delete
[34] Fix | Delete
#define __WNOTHREAD 0x20000000 /* Don't wait on children of other threads
[35] Fix | Delete
in this group */
[36] Fix | Delete
#define __WALL 0x40000000 /* Wait for any child. */
[37] Fix | Delete
#define __WCLONE 0x80000000 /* Wait for cloned process. */
[38] Fix | Delete
[39] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function