Searched refs:clone_flags (Results 1 – 4 of 4) sorted by relevance
/glibc-2.36/sysdeps/unix/sysv/linux/ |
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()
|
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()
|
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()
|
/glibc-2.36/nptl/ |
D | pthread_create.c | 277 const int clone_flags = (CLONE_VM | CLONE_FS | CLONE_FILES | CLONE_SYSVSEM in create_thread() local 287 .flags = clone_flags, in create_thread()
|