Added wxThread::GetCurrentId(), which returns an ID for the current

thread, even if it is not a wxThread.


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13595 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2002-01-16 06:28:11 +00:00
parent c17e761dc3
commit 4958ea8f7b
4 changed files with 31 additions and 29 deletions

View File

@@ -647,6 +647,11 @@ int wxThread::GetCPUCount()
return si.dwNumberOfProcessors;
}
unsigned long wxThread::GetCurrentId()
{
return (unsigned long)::GetCurrentThreadId();
}
bool wxThread::SetConcurrency(size_t level)
{
wxASSERT_MSG( IsMain(), _T("should only be called from the main thread") );