* Christian Brauner: > A problem I recently ran into that is related are problems with > sys/wait.h and linux/wait.h. > How P_{PID,PGID,PIDFD} used by the waitid() syscall are defined is > different for the two headers. > linux/wait.h uses #define for P_{PID,PGID,PIDFD} whereas sys/wait.h > uses an enum. > The problem is that if I simply don't rely on sys/wait.h and just do > #ifndef P_PID > #define P_PID <value> > #endif > where value is what the syscall expects then technically I need to call > the waitid() syscall directly since it's not at all guaranteed - afaict > - that the P_PID enum == P_PID define that glibc uses for its waitid() > syscall wrapper. Right, and this is where POSIX mandates that there is a type idtype_t which is an enum, an that it has members P_PID etc. What we could do is: typedef enum { P_ALL, /* Wait for any child. */ #define P_ALL P_ALL P_PID, /* Wait for specified process. */ #define P_PID P_PID P_PGID /* Wait for members of process group. */ #define P_PGID P_PGID } idtype_t; The other header can then use #ifdef. You'll see that pattern in some cases already. But that will only work if you include glibc headers first. The generic approach uses some shared macro for the coordination so that things work both ways. The other issue here is that it gets rather iffy from a language point of view if the kernel wants to add additional constants and glibc has still the old idtype_t definition. > So I'm now in a scenario where I can't call the glibc wrapper for > waitid() with the linux/wait.h defines and I can't call the syscall > directly (e.g. because I want to make use of the syscall's rusage > argument that glibc doesn't expose) with sys/wait.h's P_PID enum. > I'm not sure what the right solution is here... Yes, it's a hard problem. waitid is particularly annoying because POSIX and the kernel have such different function prototypes. We could perhaps expose the actual waitid system call under a different name, and use int for the ID type parameter. But that needs someone to write a patch. (My efforts to add syscall wrappers have stalled unfortunately.) Thanks, Florian