diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/process/posix_spawn.c | 4 | 
1 files changed, 4 insertions, 0 deletions
| diff --git a/src/process/posix_spawn.c b/src/process/posix_spawn.c index 0bdf71cd..ea5d2998 100644 --- a/src/process/posix_spawn.c +++ b/src/process/posix_spawn.c @@ -73,6 +73,10 @@ static int child(void *args_vp)  		__libc_sigaction(i, &sa, 0);  	} +	if (attr->__flags & POSIX_SPAWN_SETSID) +		if ((ret=__syscall(SYS_setsid)) < 0) +			goto fail; +  	if (attr->__flags & POSIX_SPAWN_SETPGROUP)  		if ((ret=__syscall(SYS_setpgid, 0, attr->__pgrp)))  			goto fail; | 
