Add stub FreeBSD ProcessMonitor::ReadThreadPointer

llvm-svn: 192994
This commit is contained in:
Ed Maste 2013-10-18 19:16:44 +00:00
parent fcb37ae365
commit 68f517938a
2 changed files with 10 additions and 0 deletions

View File

@ -1460,6 +1460,12 @@ ProcessMonitor::WriteRegisterSet(lldb::tid_t tid, void *buf, size_t buf_size, un
return false;
}
bool
ProcessMonitor::ReadThreadPointer(lldb::tid_t tid, lldb::addr_t &value)
{
return false;
}
bool
ProcessMonitor::Resume(lldb::tid_t tid, uint32_t signo)
{

View File

@ -160,6 +160,10 @@ public:
bool
WriteRegisterSet(lldb::tid_t tid, void *buf, size_t buf_size, unsigned int regset);
/// Reads the value of the thread-specific pointer for a given thread ID.
bool
ReadThreadPointer(lldb::tid_t tid, lldb::addr_t &value);
/// Writes a ptrace_lwpinfo structure corresponding to the given thread ID
/// to the memory region pointed to by @p lwpinfo.
bool