D | syscalls.h | 116 #define __MAP1(m,t,a,...) m(t,a) argument 117 #define __MAP2(m,t,a,...) m(t,a), __MAP1(m,__VA_ARGS__) argument 118 #define __MAP3(m,t,a,...) m(t,a), __MAP2(m,__VA_ARGS__) argument 119 #define __MAP4(m,t,a,...) m(t,a), __MAP3(m,__VA_ARGS__) argument 120 #define __MAP5(m,t,a,...) m(t,a), __MAP4(m,__VA_ARGS__) argument 121 #define __MAP6(m,t,a,...) m(t,a), __MAP5(m,__VA_ARGS__) argument 124 #define __SC_DECL(t, a) t a argument 125 #define __TYPE_AS(t, v) __same_type((__force t)0, v) argument 126 #define __TYPE_IS_L(t) (__TYPE_AS(t, 0L)) argument 127 #define __TYPE_IS_UL(t) (__TYPE_AS(t, 0UL)) argument [all …]
|