From b3528b0048f24e1f3019860c951f17f09e54ff8b Mon Sep 17 00:00:00 2001 From: Adhemerval Zanella Date: Fri, 28 Jan 2022 17:38:38 -0300 Subject: linux: Add P_PIDFD It was added on Linux 5.4 (3695eae5fee0605f316fbaad0b9e3de791d7dfaf) to extend waitid to wait on pidfd. Reviewed-by: Carlos O'Donell Tested-by: Carlos O'Donell --- posix/Makefile | 2 +- posix/sys/wait.h | 7 +------ 2 files changed, 2 insertions(+), 7 deletions(-) (limited to 'posix') diff --git a/posix/Makefile b/posix/Makefile index 9b30b53..cfebb8e 100644 --- a/posix/Makefile +++ b/posix/Makefile @@ -32,7 +32,7 @@ headers := sys/utsname.h sys/times.h sys/wait.h sys/types.h unistd.h \ bits/waitflags.h bits/waitstatus.h sys/unistd.h sched.h \ bits/sched.h bits/cpu-set.h re_comp.h wait.h bits/environments.h \ cpio.h spawn.h bits/unistd.h bits/types/struct_sched_param.h \ - bits/unistd_ext.h + bits/unistd_ext.h bits/types/idtype_t.h routines := \ uname \ diff --git a/posix/sys/wait.h b/posix/sys/wait.h index 79bcdb0..4d649cd 100644 --- a/posix/sys/wait.h +++ b/posix/sys/wait.h @@ -71,12 +71,7 @@ typedef __pid_t pid_t; /* The following values are used by the `waitid' function. */ #if defined __USE_XOPEN_EXTENDED || defined __USE_XOPEN2K8 -typedef enum -{ - P_ALL, /* Wait for any child. */ - P_PID, /* Wait for specified process. */ - P_PGID /* Wait for members of process group. */ -} idtype_t; +# include #endif -- cgit v1.1