Changeset 6961 in vbox for trunk/src/VBox/Runtime/include/internal
- Timestamp:
- Feb 14, 2008 5:39:02 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 28130
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/include/internal/thread.h
r5999 r6961 79 79 /** Max thread name length. */ 80 80 #define RTTHREAD_NAME_LEN 16 81 #ifdef IPRT_WITH_GENERIC_TLS 82 /** The number of TLS entries for the generic implementation. */ 83 # define RTTHREAD_TLS_ENTRIES 64 84 #endif 81 85 82 86 /** … … 133 137 RTUINTPTR volatile uBlockId; 134 138 #endif /* IN_RING3 */ 139 #ifdef IPRT_WITH_GENERIC_TLS 140 /** The TLS entries for this thread. */ 141 void *apvTlsEntries[RTTHREAD_TLS_ENTRIES]; 142 #endif 135 143 /** Thread name. */ 136 144 char szName[RTTHREAD_NAME_LEN]; … … 222 230 int rtThreadDoSetProcPriority(RTPROCPRIORITY enmPriority); 223 231 #endif /* !IN_RING0 */ 232 #ifdef IPRT_WITH_GENERIC_TLS 233 void rtThreadClearTlsEntry(RTTLS iTls); 234 void rtThreadTlsDestruction(PRTTHREADINT pThread); /* in tls-generic.cpp */ 235 #endif 224 236 225 237 __END_DECLS
Note:
See TracChangeset
for help on using the changeset viewer.