diff options
| author | Pavel Labath <labath@google.com> | 2015-08-24 14:24:20 +0000 | 
|---|---|---|
| committer | Pavel Labath <labath@google.com> | 2015-08-24 14:24:20 +0000 | 
| commit | d3aaa18e5d2396b3113a279e75b668ef89b5708f (patch) | |
| tree | 04dcff058a08c0af341c090f5aa591e2b2bf8acc | |
| parent | 2a1e58d0002b8c5306b280350f8848637dcf2fbe (diff) | |
| download | bcm5719-llvm-d3aaa18e5d2396b3113a279e75b668ef89b5708f.tar.gz bcm5719-llvm-d3aaa18e5d2396b3113a279e75b668ef89b5708f.zip  | |
Fix TestCreateDuringInstructionStep on i386
llvm-svn: 245842
| -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);  | 

