Changeset 5605 in vbox for trunk/src/VBox/Runtime/include
- Timestamp:
- Nov 1, 2007 4:09:26 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 25895
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/include/internal/thread.h
r4229 r5605 133 133 /** Set if the thread is an alien thread. 134 134 * Clear if the thread was created by IPRT. */ 135 #define RTTHREADINT_FLAGS_ALIEN BIT(0)135 #define RTTHREADINT_FLAGS_ALIEN RT_BIT(0) 136 136 /** Set if the thread has terminated. 137 137 * Clear if the thread is running. */ 138 #define RTTHREADINT_FLAGS_TERMINATED BIT(1)138 #define RTTHREADINT_FLAGS_TERMINATED RT_BIT(1) 139 139 /** This bit is set if the thread is in the AVL tree. */ 140 140 #define RTTHREADINT_FLAG_IN_TREE_BIT 2 141 141 /** @copydoc RTTHREADINT_FLAG_IN_TREE_BIT */ 142 #define RTTHREADINT_FLAG_IN_TREE BIT(RTTHREADINT_FLAG_IN_TREE_BIT)142 #define RTTHREADINT_FLAG_IN_TREE RT_BIT(RTTHREADINT_FLAG_IN_TREE_BIT) 143 143 /** @} */ 144 144
Note:
See TracChangeset
for help on using the changeset viewer.