Changeset 109
- Timestamp:
- 07/19/05 04:19:17 (3 years ago)
- Files:
-
- src/support.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
src/support.h
r104 r109 49 49 50 50 51 #ifndef likely 51 52 /// As in Linux kernel: evaluate condition, which is likely to be true 52 53 #define likely(x) __builtin_expect(x,1) 54 #endif 55 56 #ifndef unlikely 53 57 /// As in Linux kernel: evaluate condition, which is likely to be false 54 58 #define unlikely(x) __builtin_expect(x,0) 59 #endif 55 60 56 61 #endif
