]> git.proxmox.com Git - mirror_qemu.git/blame - osdep.h
update
[mirror_qemu.git] / osdep.h
CommitLineData
ea88812f
FB
1#ifndef QEMU_OSDEP_H
2#define QEMU_OSDEP_H
3
4#include <stdarg.h>
5
6int qemu_vsnprintf(char *buf, int buflen, const char *fmt, va_list args);
7void qemu_vprintf(const char *fmt, va_list ap);
8void qemu_printf(const char *fmt, ...);
9
10void *qemu_malloc(size_t size);
0fb48229 11void *qemu_mallocz(size_t size);
ea88812f
FB
12void qemu_free(void *ptr);
13
14void *get_mmap_addr(unsigned long size);
15
16/* specific kludges for OS compatibility (should be moved elsewhere) */
17#if defined(__i386__) && !defined(CONFIG_SOFTMMU) && !defined(CONFIG_USER_ONLY)
18
19/* disabled pthread version of longjmp which prevent us from using an
20 alternative signal stack */
21extern void __longjmp(jmp_buf env, int val);
22#define longjmp __longjmp
23
24#endif
25
26#endif