add more rigorous checks for presence of libkcompat and liburcu
[ust.git] / share / compiler.h
1 #define __printf(a,b) __attribute__((format(printf,a,b)))
2
3 #define likely(x) __builtin_expect(!!(x), 1)
4 #define unlikely(x) __builtin_expect(!!(x), 0)
5
6 #define notrace __attribute__((no_instrument_function))
This page took 0.028645 seconds and 4 git commands to generate.