Changeset 57358 in vbox for trunk/src/VBox/Runtime/common/misc/thread.cpp
- Timestamp:
- Aug 14, 2015 3:16:38 PM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 102121
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/misc/thread.cpp
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #define LOG_GROUP RTLOGGROUP_THREAD 32 32 #include <iprt/thread.h> … … 54 54 55 55 56 /******************************************************************************* 57 * Defined Constants And Macros *58 ******************************************************************************* /56 /********************************************************************************************************************************* 57 * Defined Constants And Macros * 58 *********************************************************************************************************************************/ 59 59 #ifdef IN_RING0 60 60 # define RT_THREAD_LOCK_RW() RTSpinlockAcquire(g_ThreadSpinlock) … … 70 70 71 71 72 /******************************************************************************* 73 * Global Variables *74 ******************************************************************************* /72 /********************************************************************************************************************************* 73 * Global Variables * 74 *********************************************************************************************************************************/ 75 75 /** The AVL thread containing the threads. */ 76 76 static PAVLPVNODECORE g_ThreadTree; … … 88 88 89 89 90 /******************************************************************************* 91 * Internal Functions *92 ******************************************************************************* /90 /********************************************************************************************************************************* 91 * Internal Functions * 92 *********************************************************************************************************************************/ 93 93 static void rtThreadDestroy(PRTTHREADINT pThread); 94 94 #ifdef IN_RING3
Note:
See TracChangeset
for help on using the changeset viewer.