Took the timeout for a ClangUserExpression down from a 10 second timeout to

500 ms.

Make MachThreadList more threadsafe.

Added code to make sure the thread register state was properly flushed for x86_64.

Fixed an missing return code for the current thread in the new thread suffix code.

Improved debugserver logging.

llvm-svn: 123815
This commit is contained in:
Greg Clayton
2011-01-19 07:54:15 +00:00
parent 424cec97bd
commit e2d4f0d7ce
9 changed files with 117 additions and 163 deletions

View File

@@ -2894,8 +2894,8 @@ RNBRemote::ExtractThreadIDFromThreadSuffix (const char *p)
tid_cstr += strlen ("thread:");
tid = strtoul(tid_cstr, NULL, 16);
}
DNBLogThreadedIf (LOG_RNB_PACKETS, "RNBRemote::ExtractThreadIDFromThreadSuffix(%s) got thread 0x%4.4x", p, tid);
}
return tid;
}
return GetCurrentThread();