Changeset 54455 in vbox
- Timestamp:
- Feb 24, 2015 3:18:33 PM (10 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/cdefs.h
r52565 r54455 1159 1159 */ 1160 1160 #ifdef __GNUC__ 1161 # define DECL_NO_INLINE(scope,type) __attribute__(( noinline)) scope type1161 # define DECL_NO_INLINE(scope,type) __attribute__((__noinline__)) scope type 1162 1162 #elif defined(_MSC_VER) 1163 1163 # define DECL_NO_INLINE(scope,type) __declspec(noinline) scope type -
trunk/src/VBox/HostDrivers/Support/SUPDrvGip.cpp
r54454 r54455 3486 3486 * @param fTimeout Set if it's a timeout. 3487 3487 */ 3488 3489 /* XXX See linux-3.14/include/linux/compiler-gcc.h:3490 * #define noinline __attribute__((noinline)) */3491 #undef noinline3492 3488 DECL_NO_INLINE(static, int) 3493 3489 supdrvMeasureTscDeltaCallbackAbortSyncSetup(PSUPDRVGIPTSCDELTARGS pArgs, PSUPTSCDELTASYNC2 pMySync, bool fIsMaster, bool fTimeout)
Note:
See TracChangeset
for help on using the changeset viewer.