diff options
author | Rich Felker <dalias@aerifal.cx> | 2017-04-22 18:39:40 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2017-04-22 18:39:40 -0400 |
commit | bb439bb17108b67f3df9c9af824d3a607b5b059d (patch) | |
tree | d8c5d468a5b26e502cf6889852a76e59044c72ad /include | |
parent | 58e2396a9aa23c132faf4198ca4d779c84955b38 (diff) | |
download | musl-bb439bb17108b67f3df9c9af824d3a607b5b059d.tar.gz musl-bb439bb17108b67f3df9c9af824d3a607b5b059d.tar.bz2 musl-bb439bb17108b67f3df9c9af824d3a607b5b059d.tar.xz musl-bb439bb17108b67f3df9c9af824d3a607b5b059d.zip |
implement new posix_spawn flag POSIX_SPAWN_SETSID
this functionality has been adopted for inclusion in the next issue of
POSIX as the result of Austin Group issue #1044.
based on patch by Daurnimator.
Diffstat (limited to 'include')
-rw-r--r-- | include/spawn.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/spawn.h b/include/spawn.h index 29c799ee..f3e9e23c 100644 --- a/include/spawn.h +++ b/include/spawn.h @@ -21,6 +21,7 @@ struct sched_param; #define POSIX_SPAWN_SETSIGMASK 8 #define POSIX_SPAWN_SETSCHEDPARAM 16 #define POSIX_SPAWN_SETSCHEDULER 32 +#define POSIX_SPAWN_SETSID 128 typedef struct { int __flags; |