[Lldb-commits] [lldb] r286374 - Remove TimeValue usage from lldb/Target

Pavel Labath via lldb-commits lldb-commits at lists.llvm.org
Wed Nov 9 07:05:48 PST 2016


Author: labath
Date: Wed Nov  9 09:05:48 2016
New Revision: 286374

URL: http://llvm.org/viewvc/llvm-project?rev=286374&view=rev
Log:
Remove TimeValue usage from lldb/Target

It was only used for declaring unused variables. :)

Modified:
    lldb/trunk/source/Target/Process.cpp

Modified: lldb/trunk/source/Target/Process.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Target/Process.cpp?rev=286374&r1=286373&r2=286374&view=diff
==============================================================================
--- lldb/trunk/source/Target/Process.cpp (original)
+++ lldb/trunk/source/Target/Process.cpp Wed Nov  9 09:05:48 2016
@@ -35,7 +35,6 @@
 #include "lldb/Host/Pipe.h"
 #include "lldb/Host/Terminal.h"
 #include "lldb/Host/ThreadLauncher.h"
-#include "lldb/Host/TimeValue.h"
 #include "lldb/Interpreter/CommandInterpreter.h"
 #include "lldb/Interpreter/OptionValueProperties.h"
 #include "lldb/Symbol/Function.h"
@@ -5093,8 +5092,6 @@ Process::RunThreadPlan(ExecutionContext
     // The expression evaluation should still succeed.
     bool miss_first_event = true;
 #endif
-    TimeValue one_thread_timeout;
-    TimeValue final_timeout;
     std::chrono::microseconds timeout = std::chrono::microseconds(0);
 
     while (true) {




More information about the lldb-commits mailing list