forked from OSchip/llvm-project
<rdar://problem/14004410>
Remove old GetNextThreadIndexID() from lldb llvm-svn: 184600
This commit is contained in:
parent
e88d90ab93
commit
ef171f24d3
|
@ -3288,10 +3288,6 @@ public:
|
|||
return m_thread_list;
|
||||
}
|
||||
|
||||
// This is obsoleted and will be removed very soon.
|
||||
uint32_t
|
||||
GetNextThreadIndexID ();
|
||||
|
||||
uint32_t
|
||||
GetNextThreadIndexID (uint64_t thread_id);
|
||||
|
||||
|
|
|
@ -1580,15 +1580,6 @@ Process::CreateOSPluginThread (lldb::tid_t tid, lldb::addr_t context)
|
|||
return ThreadSP();
|
||||
}
|
||||
|
||||
|
||||
|
||||
// This is obsoleted. Staged removal for Xcode.
|
||||
uint32_t
|
||||
Process::GetNextThreadIndexID ()
|
||||
{
|
||||
return ++m_thread_index_id;
|
||||
}
|
||||
|
||||
uint32_t
|
||||
Process::GetNextThreadIndexID (uint64_t thread_id)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue