VirtualBox

Changeset 29451 in vbox for trunk


Ignore:
Timestamp:
May 13, 2010 3:38:48 PM (15 years ago)
Author:
vboxsync
Message:

Missing change

File:
1 edited

Legend:

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

    r28800 r29451  
    9898    } while (0)
    9999
     100/** Checks if a request in the given states and sserts if not. */
     101#define RTFIELAIOREQ_ASSERT_STATE(pReq, State) \
     102    do { \
     103        AssertPtr((pReq)); \
     104        Assert((pReq)->u32Magic == RTFILEAIOREQ_MAGIC); \
     105        Assert((pReq)->enmState == RTFILEAIOREQSTATE_##State); \
     106    } while (0)
     107
    100108/** Sets the request into a specific state. */
    101109#define RTFILEAIOREQ_SET_STATE(pReq, State) \
Note: See TracChangeset for help on using the changeset viewer.

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