diff options
-rw-r--r-- | lldb/test/linux/thread/create_during_instruction_step/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/test/linux/thread/create_during_instruction_step/main.cpp b/lldb/test/linux/thread/create_during_instruction_step/main.cpp index 168575e2350..079e8b13798 100644 --- a/lldb/test/linux/thread/create_during_instruction_step/main.cpp +++ b/lldb/test/linux/thread/create_during_instruction_step/main.cpp @@ -38,7 +38,7 @@ int main () int ret = clone(thread_main, child_stack + STACK_SIZE/2, // Don't care whether the stack grows up or down, // just point to the middle - CLONE_CHILD_CLEARTID | CLONE_FILES | CLONE_FS | CLONE_PARENT_SETTID | CLONE_SETTLS | + CLONE_CHILD_CLEARTID | CLONE_FILES | CLONE_FS | CLONE_PARENT_SETTID | CLONE_SIGHAND | CLONE_SYSVSEM | CLONE_THREAD | CLONE_VM, nullptr, // thread_main argument &child_tid); |