diff options
| author | Jason Molenda <jmolenda@apple.com> | 2013-02-26 23:58:00 +0000 |
|---|---|---|
| committer | Jason Molenda <jmolenda@apple.com> | 2013-02-26 23:58:00 +0000 |
| commit | 07c446baf48973767d7c629d37ee1b85395cc51c (patch) | |
| tree | dd0ff9fadfe9b80051a19646660a5b249cb60beb /lldb/tools/debugserver/source/MacOSX/MachThreadList.h | |
| parent | e528efd73452a5dc96a2a48886323bb33fcf4e6b (diff) | |
| download | bcm5719-llvm-07c446baf48973767d7c629d37ee1b85395cc51c.tar.gz bcm5719-llvm-07c446baf48973767d7c629d37ee1b85395cc51c.zip | |
Fix one remaining mach port number/globally unique thread ID mixup which prevented queue names
from being fetched correctly. <rdar://problem/13290877>
llvm-svn: 176141
Diffstat (limited to 'lldb/tools/debugserver/source/MacOSX/MachThreadList.h')
| -rw-r--r-- | lldb/tools/debugserver/source/MacOSX/MachThreadList.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/tools/debugserver/source/MacOSX/MachThreadList.h b/lldb/tools/debugserver/source/MacOSX/MachThreadList.h index c568110ab34..85097314b02 100644 --- a/lldb/tools/debugserver/source/MacOSX/MachThreadList.h +++ b/lldb/tools/debugserver/source/MacOSX/MachThreadList.h @@ -58,6 +58,7 @@ public: MachThreadSP GetThreadByMachPortNumber (thread_t mach_port_number) const; nub_thread_t GetThreadIDByMachPortNumber (thread_t mach_port_number) const; + thread_t GetMachPortNumberByThreadID (nub_thread_t globally_unique_id) const; protected: typedef std::vector<MachThreadSP> collection; |

