]> git.saurik.com Git - wxWidgets.git/commitdiff
wxThread::GetCurrentId() for Unix
authorRobin Dunn <robin@alldunn.com>
Wed, 16 Jan 2002 06:30:27 +0000 (06:30 +0000)
committerRobin Dunn <robin@alldunn.com>
Wed, 16 Jan 2002 06:30:27 +0000 (06:30 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13596 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/unix/threadpsx.cpp

index f47319d5e34363772336f5246c0b1f5dc35ee1d0..50278f17aecf9f14b99dfbe341be74801c13ae89 100644 (file)
@@ -928,6 +928,11 @@ int wxThread::GetCPUCount()
     return -1;
 }
 
+unsigned long wxThread::GetCurrentId()
+{
+    return (unsigned long)pthread_self();
+}
+
 bool wxThread::SetConcurrency(size_t level)
 {
 #ifdef HAVE_THR_SETCONCURRENCY
@@ -986,7 +991,7 @@ wxThreadError wxThread::Create(unsigned int WXUNUSED(stackSize))
 #define sched_get_priority_min(_pol_) \
      (_pol_ == SCHED_OTHER ? PRI_FG_MIN_NP : PRI_FIFO_MIN)
 #endif
-   
+
     int max_prio = sched_get_priority_max(policy),
         min_prio = sched_get_priority_min(policy),
         prio = m_internal->GetPriority();