Changeset 36596 in vbox for trunk/include/iprt
- Timestamp:
- Apr 6, 2011 7:45:34 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 71041
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/thread.h
r36555 r36596 71 71 /** Waiting on a spin mutex. */ 72 72 RTTHREADSTATE_SPIN_MUTEX, 73 /** End of the thread states. */ 74 RTTHREADSTATE_END, 73 75 74 76 /** The usual 32-bit size hack. */ … … 163 165 164 166 #ifndef IN_RC 167 168 /** 169 * Checks if the IPRT thread component has been initialized. 170 * 171 * This is used to avoid calling into RTThread before the runtime has been 172 * initialized. 173 * 174 * @returns @c true if it's initialized, @c false if not. 175 */ 176 RTDECL(bool) RTThreadIsInitialized(void); 165 177 166 178 /** … … 378 390 */ 379 391 RTDECL(bool) RTThreadIsMain(RTTHREAD hThread); 392 393 /** 394 * Checks if the calling thread is known to IPRT. 395 * 396 * @returns @c true if it is, @c false if it isn't. 397 */ 398 RTDECL(bool) RTThreadIsSelfKnown(void); 399 400 /** 401 * Checks if the calling thread is know to IPRT and is alive. 402 * 403 * @returns @c true if it is, @c false if it isn't. 404 */ 405 RTDECL(bool) RTThreadIsSelfAlive(void); 406 407 /** 408 * Checks if the calling thread is known to IPRT. 409 * 410 * @returns @c true if it is, @c false if it isn't. 411 */ 412 RTDECL(bool) RTThreadIsOperational(void); 380 413 381 414 /**
Note:
See TracChangeset
for help on using the changeset viewer.