1234567891011121314151617181920212223242526272829 |
- #include <sched.h>
- #include <signal.h>
- #include <sysdep.h>
- #include <tls.h>
- #define ARCH_FORK() \
- INLINE_CLONE_SYSCALL (CLONE_CHILD_SETTID | CLONE_CHILD_CLEARTID | SIGCHLD, \
- 0, NULL, NULL, &THREAD_SELF->tid)
- #include "../fork.c"
|