|
1
2
3
4
5
|
#ifndef QEMU_OSDEP_H
#define QEMU_OSDEP_H
#include <stdarg.h>
|
|
6
|
#define qemu_printf printf
|
|
7
8
|
void *qemu_malloc(size_t size);
|
|
9
|
void *qemu_mallocz(size_t size);
|
|
10
|
void qemu_free(void *ptr);
|
|
11
|
char *qemu_strdup(const char *str);
|
|
12
13
14
|
void *qemu_vmalloc(size_t size);
void qemu_vfree(void *ptr);
|
|
15
16
17
|
void *get_mmap_addr(unsigned long size);
|
ths
authored
|
18
19
|
int qemu_create_pidfile(const char *filename);
|
|
20
21
22
23
24
25
26
27
28
29
30
|
#ifdef _WIN32
typedef struct {
long tv_sec;
long tv_usec;
} qemu_timeval;
int qemu_gettimeofday(qemu_timeval *tp);
#else
typedef struct timeval qemu_timeval;
#define qemu_gettimeofday(tp) gettimeofday(tp, NULL);
#endif /* !_WIN32 */
|
|
31
|
#endif
|