mirror of
https://github.com/fluencelabs/musl
synced 2025-06-27 13:41:57 +00:00
make available a namespace-safe vfork, if supported
this may be useful to posix_spawn..?
This commit is contained in:
@ -1,8 +1,11 @@
|
|||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#include "syscall.h"
|
#include "syscall.h"
|
||||||
|
#include "libc.h"
|
||||||
|
|
||||||
pid_t vfork(void)
|
pid_t __vfork(void)
|
||||||
{
|
{
|
||||||
/* vfork syscall cannot be made from C code */
|
/* vfork syscall cannot be made from C code */
|
||||||
return syscall(SYS_fork);
|
return syscall(SYS_fork);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
weak_alias(__vfork, vfork);
|
||||||
|
Reference in New Issue
Block a user