make available a namespace-safe vfork, if supported
authorRich Felker <dalias@aerifal.cx>
Sat, 15 Oct 2011 03:34:12 +0000 (23:34 -0400)
committerRich Felker <dalias@aerifal.cx>
Sat, 15 Oct 2011 03:34:12 +0000 (23:34 -0400)
this may be useful to posix_spawn..?

src/process/vfork.c

index a7dd86c..16d07ea 100644 (file)
@@ -1,8 +1,11 @@
 #include <unistd.h>
 #include "syscall.h"
+#include "libc.h"
 
-pid_t vfork(void)
+pid_t __vfork(void)
 {
        /* vfork syscall cannot be made from C code */
        return syscall(SYS_fork);
 }
+
+weak_alias(__vfork, vfork);