From 74244e5b3ed4a61d99c5fc0967b69e5c9a753456 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Fri, 30 Aug 2019 16:21:36 -0400 Subject: add posix_spawn [f]chdir file actions these are presently extensions, thus named with _np to match glibc and other implementations that provide them; however they are likely to be standardized in the future without the _np suffix as a result of Austin Group issue 1208. if so, both names will be kept as aliases. --- src/process/fdop.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/process/fdop.h') diff --git a/src/process/fdop.h b/src/process/fdop.h index 00b87514..5adf1443 100644 --- a/src/process/fdop.h +++ b/src/process/fdop.h @@ -1,6 +1,8 @@ #define FDOP_CLOSE 1 #define FDOP_DUP2 2 #define FDOP_OPEN 3 +#define FDOP_CHDIR 4 +#define FDOP_FCHDIR 5 struct fdop { struct fdop *next, *prev; -- cgit v1.2.1