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)
30 #define container_of(ptr, type, member) ({ \
31 const typeof(((type *) 0)->member) *__mptr = (ptr); \
32 (type *) ((char *) __mptr - offsetof(type, member));})
35 /* Convert from a base type to a parent type, with compile time checking. */
37 #define DO_UPCAST(type, field, dev) ( __extension__ ( { \
38 char __attribute__((unused)) offset_must_be_zero[ \
39 -offsetof(type, field)]; \
40 container_of(dev, type, field);}))
42 #define DO_UPCAST(type, field, dev) container_of(dev, type, field)
45 #define typeof_field(type, field) typeof(((type *)0)->field)
46 #define type_check(t1,t2) ((t1*)0 - (t2*)0)
49 #define MIN(a, b) (((a) < (b)) ? (a) : (b))
52 #define MAX(a, b) (((a) > (b)) ? (a) : (b))
56 #define DIV_ROUND_UP(n,d) (((n) + (d) - 1) / (d))
60 #define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
64 #if !((__GNUC__ < 3) || defined(__APPLE__))
66 #define inline __attribute__ (( always_inline )) __inline__
70 #define inline always_inline
73 #define qemu_printf printf
75 int qemu_daemon(int nochdir
, int noclose
);
76 void *qemu_memalign(size_t alignment
, size_t size
);
77 void *qemu_vmalloc(size_t size
);
78 void qemu_vfree(void *ptr
);
80 #define QEMU_MADV_INVALID -1
82 #if defined(CONFIG_MADVISE)
84 #define QEMU_MADV_WILLNEED MADV_WILLNEED
85 #define QEMU_MADV_DONTNEED MADV_DONTNEED
87 #define QEMU_MADV_DONTFORK MADV_DONTFORK
89 #define QEMU_MADV_DONTFORK QEMU_MADV_INVALID
92 #define QEMU_MADV_MERGEABLE MADV_MERGEABLE
94 #define QEMU_MADV_MERGEABLE QEMU_MADV_INVALID
97 #elif defined(CONFIG_POSIX_MADVISE)
99 #define QEMU_MADV_WILLNEED POSIX_MADV_WILLNEED
100 #define QEMU_MADV_DONTNEED POSIX_MADV_DONTNEED
101 #define QEMU_MADV_DONTFORK QEMU_MADV_INVALID
102 #define QEMU_MADV_MERGEABLE QEMU_MADV_INVALID
106 #define QEMU_MADV_WILLNEED QEMU_MADV_INVALID
107 #define QEMU_MADV_DONTNEED QEMU_MADV_INVALID
108 #define QEMU_MADV_DONTFORK QEMU_MADV_INVALID
109 #define QEMU_MADV_MERGEABLE QEMU_MADV_INVALID
113 int qemu_madvise(void *addr
, size_t len
, int advice
);
115 #if defined(__HAIKU__) && defined(__i386__)
116 #define FMT_pid "%ld"
118 #define FMT_pid "%" PRId64
123 int qemu_create_pidfile(const char *filename
);
124 int qemu_get_thread_id(void);
127 static inline void qemu_timersub(const struct timeval
*val1
,
128 const struct timeval
*val2
,
131 res
->tv_sec
= val1
->tv_sec
- val2
->tv_sec
;
132 if (val1
->tv_usec
< val2
->tv_usec
) {
134 res
->tv_usec
= val1
->tv_usec
- val2
->tv_usec
+ 1000 * 1000;
136 res
->tv_usec
= val1
->tv_usec
- val2
->tv_usec
;
140 #define qemu_timersub timersub
143 void qemu_set_cloexec(int fd
);