X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=include%2Fspawn.h;h=bba57ce4975613b73fff1c2819fd95f8af7c53ec;hb=6fcd60ddd903df13402704fe6026cb1f8e780fd7;hp=92b77f79c47fb5272fa2931ace58bec0162538fe;hpb=c6d441e3a246370d9c459396ec22b096db93850e;p=musl diff --git a/include/spawn.h b/include/spawn.h index 92b77f79..bba57ce4 100644 --- a/include/spawn.h +++ b/include/spawn.h @@ -21,6 +21,8 @@ struct sched_param; #define POSIX_SPAWN_SETSIGMASK 8 #define POSIX_SPAWN_SETSCHEDPARAM 16 #define POSIX_SPAWN_SETSCHEDULER 32 +#define POSIX_SPAWN_USEVFORK 64 +#define POSIX_SPAWN_SETSID 128 typedef struct { int __flags; @@ -57,8 +59,8 @@ int posix_spawnattr_getsigdefault(const posix_spawnattr_t *__restrict, sigset_t int posix_spawnattr_setschedparam(posix_spawnattr_t *__restrict, const struct sched_param *__restrict); int posix_spawnattr_getschedparam(const posix_spawnattr_t *__restrict, struct sched_param *__restrict); -int posix_spawnattr_setschedpolicy(posix_spawnattr_t *__restrict, int); -int posix_spawnattr_getschedpolicy(const posix_spawnattr_t *__restrict, int *); +int posix_spawnattr_setschedpolicy(posix_spawnattr_t *, int); +int posix_spawnattr_getschedpolicy(const posix_spawnattr_t *__restrict, int *__restrict); int posix_spawn_file_actions_init(posix_spawn_file_actions_t *); int posix_spawn_file_actions_destroy(posix_spawn_file_actions_t *);