Edit File by line
/home/barbar84/public_h.../wp-conte.../plugins/sujqvwi/ExeBy/smexe_ro.../usr/include/linux
File: sched.h
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
[0] Fix | Delete
#ifndef _LINUX_SCHED_H
[1] Fix | Delete
#define _LINUX_SCHED_H
[2] Fix | Delete
[3] Fix | Delete
/*
[4] Fix | Delete
* cloning flags:
[5] Fix | Delete
*/
[6] Fix | Delete
#define CSIGNAL 0x000000ff /* signal mask to be sent at exit */
[7] Fix | Delete
#define CLONE_VM 0x00000100 /* set if VM shared between processes */
[8] Fix | Delete
#define CLONE_FS 0x00000200 /* set if fs info shared between processes */
[9] Fix | Delete
#define CLONE_FILES 0x00000400 /* set if open files shared between processes */
[10] Fix | Delete
#define CLONE_SIGHAND 0x00000800 /* set if signal handlers and blocked signals shared */
[11] Fix | Delete
#define CLONE_PIDFD 0x00001000 /* set if a pidfd should be placed in parent */
[12] Fix | Delete
#define CLONE_PTRACE 0x00002000 /* set if we want to let tracing continue on the child too */
[13] Fix | Delete
#define CLONE_VFORK 0x00004000 /* set if the parent wants the child to wake it up on mm_release */
[14] Fix | Delete
#define CLONE_PARENT 0x00008000 /* set if we want to have the same parent as the cloner */
[15] Fix | Delete
#define CLONE_THREAD 0x00010000 /* Same thread group? */
[16] Fix | Delete
#define CLONE_NEWNS 0x00020000 /* New mount namespace group */
[17] Fix | Delete
#define CLONE_SYSVSEM 0x00040000 /* share system V SEM_UNDO semantics */
[18] Fix | Delete
#define CLONE_SETTLS 0x00080000 /* create a new TLS for the child */
[19] Fix | Delete
#define CLONE_PARENT_SETTID 0x00100000 /* set the TID in the parent */
[20] Fix | Delete
#define CLONE_CHILD_CLEARTID 0x00200000 /* clear the TID in the child */
[21] Fix | Delete
#define CLONE_DETACHED 0x00400000 /* Unused, ignored */
[22] Fix | Delete
#define CLONE_UNTRACED 0x00800000 /* set if the tracing process can't force CLONE_PTRACE on this clone */
[23] Fix | Delete
#define CLONE_CHILD_SETTID 0x01000000 /* set the TID in the child */
[24] Fix | Delete
#define CLONE_NEWCGROUP 0x02000000 /* New cgroup namespace */
[25] Fix | Delete
#define CLONE_NEWUTS 0x04000000 /* New utsname namespace */
[26] Fix | Delete
#define CLONE_NEWIPC 0x08000000 /* New ipc namespace */
[27] Fix | Delete
#define CLONE_NEWUSER 0x10000000 /* New user namespace */
[28] Fix | Delete
#define CLONE_NEWPID 0x20000000 /* New pid namespace */
[29] Fix | Delete
#define CLONE_NEWNET 0x40000000 /* New network namespace */
[30] Fix | Delete
#define CLONE_IO 0x80000000 /* Clone io context */
[31] Fix | Delete
[32] Fix | Delete
/*
[33] Fix | Delete
* cloning flags intersect with CSIGNAL so can be used with unshare and clone3
[34] Fix | Delete
* syscalls only:
[35] Fix | Delete
*/
[36] Fix | Delete
#define CLONE_NEWTIME 0x00000080 /* New time namespace */
[37] Fix | Delete
[38] Fix | Delete
/*
[39] Fix | Delete
* Scheduling policies
[40] Fix | Delete
*/
[41] Fix | Delete
#define SCHED_NORMAL 0
[42] Fix | Delete
#define SCHED_FIFO 1
[43] Fix | Delete
#define SCHED_RR 2
[44] Fix | Delete
#define SCHED_BATCH 3
[45] Fix | Delete
/* SCHED_ISO: reserved but not implemented yet */
[46] Fix | Delete
#define SCHED_IDLE 5
[47] Fix | Delete
#define SCHED_DEADLINE 6
[48] Fix | Delete
[49] Fix | Delete
/* Can be ORed in to make sure the process is reverted back to SCHED_NORMAL on fork */
[50] Fix | Delete
#define SCHED_RESET_ON_FORK 0x40000000
[51] Fix | Delete
[52] Fix | Delete
/*
[53] Fix | Delete
* For the sched_{set,get}attr() calls
[54] Fix | Delete
*/
[55] Fix | Delete
#define SCHED_FLAG_RESET_ON_FORK 0x01
[56] Fix | Delete
#define SCHED_FLAG_RECLAIM 0x02
[57] Fix | Delete
#define SCHED_FLAG_DL_OVERRUN 0x04
[58] Fix | Delete
#define SCHED_FLAG_KEEP_POLICY 0x08
[59] Fix | Delete
[60] Fix | Delete
#define SCHED_FLAG_ALL (SCHED_FLAG_RESET_ON_FORK | \
[61] Fix | Delete
SCHED_FLAG_RECLAIM | \
[62] Fix | Delete
SCHED_FLAG_DL_OVERRUN | \
[63] Fix | Delete
SCHED_FLAG_KEEP_POLICY)
[64] Fix | Delete
[65] Fix | Delete
#endif /* _LINUX_SCHED_H */
[66] Fix | Delete
[67] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function