Changeset 57358 in vbox for trunk/src/VBox/Runtime/r3/posix/thread-posix.cpp
- Timestamp:
- Aug 14, 2015 3:16:38 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/posix/thread-posix.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 <errno.h> … … 68 68 69 69 70 /******************************************************************************* 71 * Defined Constants And Macros *72 ******************************************************************************* /70 /********************************************************************************************************************************* 71 * Defined Constants And Macros * 72 *********************************************************************************************************************************/ 73 73 #ifndef IN_GUEST 74 74 /** Includes RTThreadPoke. */ … … 77 77 78 78 79 /******************************************************************************* 80 * Global Variables *81 ******************************************************************************* /79 /********************************************************************************************************************************* 80 * Global Variables * 81 *********************************************************************************************************************************/ 82 82 /** The pthread key in which we store the pointer to our own PRTTHREAD structure. */ 83 83 static pthread_key_t g_SelfKey; … … 113 113 114 114 115 /******************************************************************************* 116 * Internal Functions *117 ******************************************************************************* /115 /********************************************************************************************************************************* 116 * Internal Functions * 117 *********************************************************************************************************************************/ 118 118 static void *rtThreadNativeMain(void *pvArgs); 119 119 static void rtThreadKeyDestruct(void *pvValue);
Note:
See TracChangeset
for help on using the changeset viewer.