Searched refs:clone_flags (Results 1 – 3 of 3) sorted by relevance
/sysdeps/unix/sysv/linux/ |
A D | tst-clone3.c | 70 int clone_flags = CLONE_THREAD; in do_test() local 72 clone_flags |= CLONE_VM | CLONE_SIGHAND; in do_test() 74 clone_flags |= CLONE_CHILD_CLEARTID; in do_test() 85 tid = __clone2 (f, st, sizeof (st), clone_flags, NULL, /* ptid */ NULL, in do_test() 89 tid = clone (f, st + sizeof (st), clone_flags, NULL, /* ptid */ NULL, in do_test() 92 tid = clone (f, st, clone_flags, NULL, /* ptid */ NULL, /* tls */ NULL, in do_test()
|
A D | tst-clone3-internal.c | 70 int clone_flags = CLONE_THREAD; in do_test() local 72 clone_flags |= CLONE_VM | CLONE_SIGHAND; in do_test() 74 clone_flags |= CLONE_CHILD_CLEARTID; in do_test() 83 .flags = clone_flags & ~CSIGNAL, in do_test() 84 .exit_signal = clone_flags & CSIGNAL, in do_test()
|
A D | tst-clone2.c | 73 int clone_flags = 0; in do_test() local 79 pid_t p = __clone2 (f, st, sizeof (st), clone_flags, 0); in do_test() 83 pid_t p = clone (f, st + sizeof (st), clone_flags, 0); in do_test() 85 pid_t p = clone (f, st, clone_flags, 0); in do_test()
|
Completed in 11 milliseconds