diff options
author | Greg Clayton <gclayton@apple.com> | 2010-10-18 04:14:23 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2010-10-18 04:14:23 +0000 |
commit | 58d1c9a44f9c3a0b2813e2a63f912d3fe8ec3840 (patch) | |
tree | 2f60b8fbbfcf5e19a54376803d0d2d21ff5d3363 /lldb/tools/debugserver/source/MacOSX/MachProcess.h | |
parent | 5cd41c4b13aa8ce63a3e84f8caf668f01167f6f0 (diff) | |
download | bcm5719-llvm-58d1c9a44f9c3a0b2813e2a63f912d3fe8ec3840.tar.gz bcm5719-llvm-58d1c9a44f9c3a0b2813e2a63f912d3fe8ec3840.zip |
Still trying to get detach to work with debugserver. Got a bit closer,
but something is still killing our inferior.
Fixed an issue with darwin-debug where it wasn't passing all needed arguments
to the inferior.
Fixed a race condition with the attach to named process code.
llvm-svn: 116697
Diffstat (limited to 'lldb/tools/debugserver/source/MacOSX/MachProcess.h')
-rw-r--r-- | lldb/tools/debugserver/source/MacOSX/MachProcess.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/tools/debugserver/source/MacOSX/MachProcess.h b/lldb/tools/debugserver/source/MacOSX/MachProcess.h index 533cb2ebda7..69961b2c09f 100644 --- a/lldb/tools/debugserver/source/MacOSX/MachProcess.h +++ b/lldb/tools/debugserver/source/MacOSX/MachProcess.h @@ -141,7 +141,7 @@ public: uint32_t GetThreadIndexFromThreadID (nub_thread_t tid); nub_thread_t GetCurrentThread (); nub_thread_t SetCurrentThread (nub_thread_t tid); - MachThreadList & GetThreadList() { return m_threadList; } + MachThreadList & GetThreadList() { return m_thread_list; } bool GetThreadStoppedReason(nub_thread_t tid, struct DNBThreadStopInfo *stop_info) const; void DumpThreadStoppedReason(nub_thread_t tid) const; const char * GetThreadInfo (nub_thread_t tid) const; @@ -243,7 +243,7 @@ private: m_exception_messages; // A collection of exception messages caught when listening to the exception port PThreadMutex m_exception_messages_mutex; // Multithreaded protection for m_exception_messages - MachThreadList m_threadList; // A list of threads that is maintained/updated after each stop + MachThreadList m_thread_list; // A list of threads that is maintained/updated after each stop nub_state_t m_state; // The state of our process PThreadMutex m_state_mutex; // Multithreaded protection for m_state PThreadEvent m_events; // Process related events in the child processes lifetime can be waited upon |