cppcheck/triage/linux-3.11/linux-3.11.h

13 lines
410 B
C

#define BUG_ON(C) if (C) exit(1)
#define ARRAY_SIZE(A) (sizeof(A) / sizeof(A[0]))
#define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER)
#define container_of(ptr, type, member) ({ \
const typeof( ((type *)0)->member ) *__mptr = (ptr); \
(type *)( (char *)__mptr - offsetof(type,member) );})
void panic(const char *fmt, ...) __attribute__((noreturn));