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.

llvm-svn: 157009
This commit is contained in:
Jim Ingham 2012-05-17 18:51:37 +00:00
parent 4a94c91077
commit 5738c95901
2 changed files with 2 additions and 2 deletions

View File

@ -142,7 +142,7 @@ AppleObjCRuntime::GetObjectDescription (Stream &strm, Value &value, ExecutionCon
&wrapper_struct_addr,
error_stream,
stop_others,
1000000,
100000,
try_all_threads,
unwind_on_error,
ret);

View File

@ -217,7 +217,7 @@ AppleObjCRuntimeV2::RunFunctionToFindClassName(addr_t object_addr, Thread *threa
&m_get_class_name_args,
errors,
stop_others,
1000000,
100000,
try_all_threads,
unwind_on_error,
void_ptr_value);