[Lldb-commits] [lldb] r157009 - in /lldb/trunk/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime: AppleObjCRuntime.cpp AppleObjCRuntimeV2.cpp
Jim Ingham
jingham at apple.com
Thu May 17 11:51:37 PDT 2012
Author: jingham
Date: Thu May 17 13:51:37 2012
New Revision: 157009
URL: http://llvm.org/viewvc/llvm-project?rev=157009&view=rev
Log:
Reduce the timeout value for the "get class name" and "po" functions to .1 second. 1 second (what they were before) is way too long.
Modified:
lldb/trunk/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntime.cpp
lldb/trunk/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp
Modified: lldb/trunk/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntime.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntime.cpp?rev=157009&r1=157008&r2=157009&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntime.cpp (original)
+++ lldb/trunk/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntime.cpp Thu May 17 13:51:37 2012
@@ -142,7 +142,7 @@
&wrapper_struct_addr,
error_stream,
stop_others,
- 1000000,
+ 100000,
try_all_threads,
unwind_on_error,
ret);
Modified: lldb/trunk/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp?rev=157009&r1=157008&r2=157009&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp (original)
+++ lldb/trunk/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp Thu May 17 13:51:37 2012
@@ -217,7 +217,7 @@
&m_get_class_name_args,
errors,
stop_others,
- 1000000,
+ 100000,
try_all_threads,
unwind_on_error,
void_ptr_value);
More information about the lldb-commits
mailing list