...ME PR_GET_NAME PR_SET_NO_NEW_PRIVS PR_GET_NO_NEW_PRIVS PR_PAC_RESET_KEYS PR_SET_PDEATHSIG PR_GET_PDEATHSIG PR_SET_PTRACER PR_SET_SECCOMP PR_GET_SECCOMP PR_SET_SECUREBITS PR_GET_…create a child process NAME fork - create a child process LIBRARY Standard C library ( libc , -lc ) SYNOPSIS #include <unistd.h> pid_t fork(void); DESCRIPTION fork () creates a new…get the secure computing mode NAME PR_GET_SECCOMP - get the secure computing mode LIBRARY Standard C library ( libc , -lc ) SYNOPSIS #include <linux/prctl.h> /* Definition of PR_* …execute program NAME execve - execute program LIBRARY Standard C library ( libc , -lc ) SYNOPSIS #include <unistd.h> int execve(const char * pathname , char *const _Nullable argv […disable or enable performance counters attached to the calling process NAME PR_TASK_PERF_EVENTS_DISABLE, PR_TASK_PERF_EVENTS_ENABLE - disable or enable performance counters attache…enable or disable kernel management of Memory Protection eXtensions (MPX) NAME PR_MPX_ENABLE_MANAGEMENT, PR_MPX_DISABLE_MANAGEMENT - enable or disable kernel management of Memory P…get process identification NAME getpid, getppid - get process identification LIBRARY Standard C library ( libc , -lc ) SYNOPSIS #include <unistd.h> pid_t getpid(void); pid_t getppi…get process identification NAME getpid, getppid - get process identification LIBRARY Standard C library ( libc , -lc ) SYNOPSIS #include <unistd.h> pid_t getpid(void); pid_t getppi…operate on Secure Computing state of the process NAME seccomp - operate on Secure Computing state of the process LIBRARY Standard C library ( libc , -lc ) SYNOPSIS #include <linux/…terminate the calling process NAME _exit, _Exit - terminate the calling process LIBRARY Standard C library ( libc , -lc ) SYNOPSIS #include <unistd.h> [[noreturn]] void _exit(int s…enforce a Landlock ruleset NAME landlock_restrict_self - enforce a Landlock ruleset LIBRARY Standard C library ( libc , -lc ) SYNOPSIS #include <linux/landlock.h> /* Definition of …process trace NAME ptrace - process trace LIBRARY Standard C library ( libc , -lc ) SYNOPSIS #include <sys/ptrace.h> long ptrace(enum __ptrace_request op , pid_t pid , void * addr …wait for process to change state NAME wait, waitpid, waitid - wait for process to change state LIBRARY Standard C library ( libc , -lc ) SYNOPSIS #include <sys/wait.h> pid_t wait(i…wait for process to change state NAME wait, waitpid, waitid - wait for process to change state LIBRARY Standard C library ( libc , -lc ) SYNOPSIS #include <sys/wait.h> pid_t wait(i…wait for process to change state NAME wait, waitpid, waitid - wait for process to change state LIBRARY Standard C library ( libc , -lc ) SYNOPSIS #include <sys/wait.h> pid_t wait(i…set up performance monitoring NAME perf_event_open - set up performance monitoring LIBRARY Standard C library ( libc , -lc ) SYNOPSIS #include <linux/perf_event.h> /* Definition of…get static priority range NAME sched_get_priority_max, sched_get_priority_min - get static priority range LIBRARY Standard C library ( libc , -lc ) SYNOPSIS #include <sched.h> int …get static priority range NAME sched_get_priority_max, sched_get_priority_min - get static priority range LIBRARY Standard C library ( libc , -lc ) SYNOPSIS #include <sched.h> int …get the SCHED_RR interval for the named process NAME sched_rr_get_interval - get the SCHED_RR interval for the named process LIBRARY Standard C library ( libc , -lc ) SYNOPSIS #inc…get/set list of robust futexes NAME get_robust_list, set_robust_list - get/set list of robust futexes LIBRARY Standard C library ( libc , -lc ) SYNOPSIS #include <linux/futex.h> /*…