8 #include <sys/signal.h>
14 #define xglue(x, y) x ## y
15 #define glue(x, y) xglue(x, y)
16 #define stringify(s) tostring(s)
17 #define tostring(s) #s
22 #define __builtin_expect(x, n) (x)
25 #define likely(x) __builtin_expect(!!(x), 1)
26 #define unlikely(x) __builtin_expect(!!(x), 0)
29 #ifdef CONFIG_NEED_OFFSETOF
30 #define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *) 0)->MEMBER)
33 #define container_of(ptr, type, member) ({ \
34 const typeof(((type *) 0)->member) *__mptr = (ptr); \
35 (type *) ((char *) __mptr - offsetof(type, member));})
38 /* Convert from a base type to a parent type, with compile time checking. */
40 #define DO_UPCAST(type, field, dev) ( __extension__ ( { \
41 char __attribute__((unused)) offset_must_be_zero[ \
42 -offsetof(type, field)]; \
43 container_of(dev, type, field);}))
45 #define DO_UPCAST(type, field, dev) container_of(dev, type, field)
48 #define typeof_field(type, field) typeof(((type *)0)->field)
49 #define type_check(t1,t2) ((t1*)0 - (t2*)0)
52 #define MIN(a, b) (((a) < (b)) ? (a) : (b))
55 #define MAX(a, b) (((a) > (b)) ? (a) : (b))
59 #define DIV_ROUND_UP(n,d) (((n) + (d) - 1) / (d))
63 #define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
67 #if !((__GNUC__ < 3) || defined(__APPLE__))
69 #define inline __attribute__ (( always_inline )) __inline__
73 #define inline always_inline
77 #define REGPARM __attribute((regparm(3)))
82 #define qemu_printf printf
84 int qemu_daemon(int nochdir
, int noclose
);
85 void *qemu_memalign(size_t alignment
, size_t size
);
86 void *qemu_vmalloc(size_t size
);
87 void qemu_vfree(void *ptr
);
89 #define QEMU_MADV_INVALID -1
91 #if defined(CONFIG_MADVISE)
93 #define QEMU_MADV_WILLNEED MADV_WILLNEED
94 #define QEMU_MADV_DONTNEED MADV_DONTNEED
96 #define QEMU_MADV_DONTFORK MADV_DONTFORK
98 #define QEMU_MADV_DONTFORK QEMU_MADV_INVALID
100 #ifdef MADV_MERGEABLE
101 #define QEMU_MADV_MERGEABLE MADV_MERGEABLE
103 #define QEMU_MADV_MERGEABLE QEMU_MADV_INVALID
106 #elif defined(CONFIG_POSIX_MADVISE)
108 #define QEMU_MADV_WILLNEED POSIX_MADV_WILLNEED
109 #define QEMU_MADV_DONTNEED POSIX_MADV_DONTNEED
110 #define QEMU_MADV_DONTFORK QEMU_MADV_INVALID
111 #define QEMU_MADV_MERGEABLE QEMU_MADV_INVALID
115 #define QEMU_MADV_WILLNEED QEMU_MADV_INVALID
116 #define QEMU_MADV_DONTNEED QEMU_MADV_INVALID
117 #define QEMU_MADV_DONTFORK QEMU_MADV_INVALID
118 #define QEMU_MADV_MERGEABLE QEMU_MADV_INVALID
122 int qemu_madvise(void *addr
, size_t len
, int advice
);
124 #if defined(__HAIKU__) && defined(__i386__)
125 #define FMT_pid "%ld"
127 #define FMT_pid "%" PRId64
132 int qemu_create_pidfile(const char *filename
);
133 int qemu_get_thread_id(void);
136 static inline void qemu_timersub(const struct timeval
*val1
,
137 const struct timeval
*val2
,
140 res
->tv_sec
= val1
->tv_sec
- val2
->tv_sec
;
141 if (val1
->tv_usec
< val2
->tv_usec
) {
143 res
->tv_usec
= val1
->tv_usec
- val2
->tv_usec
+ 1000 * 1000;
145 res
->tv_usec
= val1
->tv_usec
- val2
->tv_usec
;
149 #define qemu_timersub timersub