VirtualBox

Changeset 5605 in vbox for trunk/src/VBox/Runtime/include


Ignore:
Timestamp:
Nov 1, 2007 4:09:26 PM (17 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
25895
Message:

BIT => RT_BIT, BIT64 => RT_BIT_64. BIT() is defined in Linux 2.6.24

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Runtime/include/internal/thread.h

    r4229 r5605  
    133133/** Set if the thread is an alien thread.
    134134 * Clear if the thread was created by IPRT. */
    135 #define RTTHREADINT_FLAGS_ALIEN      BIT(0)
     135#define RTTHREADINT_FLAGS_ALIEN      RT_BIT(0)
    136136/** Set if the thread has terminated.
    137137 * Clear if the thread is running. */
    138 #define RTTHREADINT_FLAGS_TERMINATED BIT(1)
     138#define RTTHREADINT_FLAGS_TERMINATED RT_BIT(1)
    139139/** This bit is set if the thread is in the AVL tree. */
    140140#define RTTHREADINT_FLAG_IN_TREE_BIT 2
    141141/** @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)
    143143/** @} */
    144144
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette