Changeset 77982 in vbox for trunk/src/VBox/Runtime/common/misc
- Timestamp:
- Apr 2, 2019 10:23:09 AM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 129750
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/misc/thread.cpp
r76553 r77982 73 73 * Global Variables * 74 74 *********************************************************************************************************************************/ 75 /** The AVL thread containing the threads. */ 76 static PAVLPVNODECORE g_ThreadTree; 77 /** The number of threads in the tree (for ring-0 termination kludge). */ 78 static uint32_t volatile g_cThreadInTree; 75 /** Indicates whether we've been initialized or not. */ 76 static bool g_frtThreadInitialized; 79 77 #ifdef IN_RING3 80 78 /** The RW lock protecting the tree. */ 81 static RTSEMRW g_ThreadRWSem = NIL_RTSEMRW;79 static RTSEMRW g_ThreadRWSem = NIL_RTSEMRW; 82 80 #else 83 81 /** The spinlocks protecting the tree. */ 84 static RTSPINLOCK g_ThreadSpinlock = NIL_RTSPINLOCK; 85 #endif 86 /** Indicates whether we've been initialized or not. */ 87 static bool g_frtThreadInitialized; 82 static RTSPINLOCK g_ThreadSpinlock = NIL_RTSPINLOCK; 83 #endif 84 /** The AVL thread containing the threads. */ 85 static PAVLPVNODECORE g_ThreadTree; 86 /** The number of threads in the tree (for ring-0 termination kludge). */ 87 static uint32_t volatile g_cThreadInTree; 88 /** Counters for each thread type. */ 89 DECLHIDDEN(uint32_t volatile) g_acRTThreadTypeStats[RTTHREADTYPE_END]; 88 90 89 91 … … 460 462 ASMAtomicOrU32(&pThread->fIntFlags, RTTHREADINT_FLAG_IN_TREE); 461 463 if (fRc) 464 { 462 465 ASMAtomicIncU32(&g_cThreadInTree); 466 ASMAtomicIncU32(&g_acRTThreadTypeStats[pThread->enmType]); 467 } 463 468 464 469 AssertReleaseMsg(fRc, ("Lock problem? %p (%RTnthrd) %s\n", pThread, NativeThread, pThread->szName)); … … 481 486 { 482 487 PRTTHREADINT pThread2 = (PRTTHREADINT)RTAvlPVRemove(&g_ThreadTree, pThread->Core.Key); 483 #if !defined(RT_OS_OS2) /** @todo this asserts for threads created by NSPR */484 488 AssertMsg(pThread2 == pThread, ("%p(%s) != %p (%p/%s)\n", pThread2, pThread2 ? pThread2->szName : "<null>", 485 489 pThread, pThread->Core.Key, pThread->szName)); 486 #endif487 490 if (pThread2) 491 { 488 492 ASMAtomicDecU32(&g_cThreadInTree); 493 ASMAtomicDecU32(&g_acRTThreadTypeStats[pThread->enmType]); 494 } 489 495 } 490 496
Note:
See TracChangeset
for help on using the changeset viewer.