VirtualBox

Changeset 13771 in vbox for trunk/src/VBox/Devices/Network


Ignore:
Timestamp:
Nov 3, 2008 7:49:43 PM (16 years ago)
Author:
vboxsync
Message:

do {} while (0)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Devices/Network/slirp/slirp.h

    r13738 r13771  
    390390do{                                                                         \
    391391    int rc;                                                                 \
    392     rc = RTSemFastMutexRequest((x));                        \
     392    rc = RTSemFastMutexRequest((x));                                        \
    393393    AssertReleaseRC(rc);                                                    \
    394394}while (0)
     
    397397do{                                                                         \
    398398    int rc;                                                                 \
    399     rc = RTSemFastMutexRelease((x));                                            \
     399    rc = RTSemFastMutexRelease((x));                                        \
    400400    AssertReleaseRC(rc);                                                    \
    401401}while (0)
     
    404404do{                                                                         \
    405405    int rc;                                                                 \
    406     rc = RTSemFastMutexCreate((x));                                             \
     406    rc = RTSemFastMutexCreate((x));                                         \
    407407    AssertReleaseRC(rc);                                                    \
    408408}while (0)
     
    411411do{                                                                         \
    412412    int rc;                                                                 \
    413     rc = RTSemFastMutexDestroy((x));                                            \
     413    rc = RTSemFastMutexDestroy((x));                                        \
    414414    AssertReleaseRC(rc);                                                    \
    415415}while (0)
    416416#else
    417 #define VBOX_SLIRP_LOCK(x) /* ignore */
    418 #define VBOX_SLIRP_UNLOCK(x) /* ignore */
    419 #define VBOX_SLIRP_LOCK_DESTROY(x) /* ignore */
    420 #define VBOX_SLIRP_LOCK_CREATE(x) /* ignore */
    421 #endif
    422 
    423 #endif
     417#define VBOX_SLIRP_LOCK(x)              do {} while (0)
     418#define VBOX_SLIRP_UNLOCK(x)            do {} while (0)
     419#define VBOX_SLIRP_LOCK_DESTROY(x)      do {} while (0)
     420#define VBOX_SLIRP_LOCK_CREATE(x)       do {} while (0)
     421#endif
     422
     423#endif
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