forked from OSchip/llvm-project
Add stub FreeBSD ProcessMonitor::ReadThreadPointer
llvm-svn: 192994
This commit is contained in:
parent
fcb37ae365
commit
68f517938a
|
@ -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)
|
||||
{
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue