[Lldb-commits] [lldb] r245842 - Fix TestCreateDuringInstructionStep on i386

Pavel Labath via lldb-commits lldb-commits at lists.llvm.org
Mon Aug 24 07:24:21 PDT 2015


Author: labath
Date: Mon Aug 24 09:24:20 2015
New Revision: 245842

URL: http://llvm.org/viewvc/llvm-project?rev=245842&view=rev
Log:
Fix TestCreateDuringInstructionStep on i386

Modified:
    lldb/trunk/test/linux/thread/create_during_instruction_step/main.cpp

Modified: lldb/trunk/test/linux/thread/create_during_instruction_step/main.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/linux/thread/create_during_instruction_step/main.cpp?rev=245842&r1=245841&r2=245842&view=diff
==============================================================================
--- lldb/trunk/test/linux/thread/create_during_instruction_step/main.cpp (original)
+++ lldb/trunk/test/linux/thread/create_during_instruction_step/main.cpp Mon Aug 24 09:24:20 2015
@@ -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);




More information about the lldb-commits mailing list