blob: 8ea5b489d063886d68555a7ce5bc625d74c36005 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#ifndef SRC_COMMON_H_
#define SRC_COMMON_H_
#include <stdio.h>
#include <stdlib.h>
#include "uv_link_t.h"
#define container_of(ptr, type, member) \
((type *) ((char *) (ptr) - offsetof(type, member)))
#define CHECK(VALUE, MESSAGE) \
do { \
if ((VALUE)) break; \
fprintf(stderr, "Assertion failure: " #MESSAGE "\n"); \
abort(); \
} while (0)
#define CHECK_EQ(A, B, MESSAGE) CHECK((A) == (B), MESSAGE)
#define CHECK_NE(A, B, MESSAGE) CHECK((A) != (B), MESSAGE)
#endif /* SRC_COMMON_H_ */
|