new reset API - shutdown support
[qemu.git] / osdep.h
blob1c14de4c5ee15a68a9427c693a14dffc63f458b5
1 #ifndef QEMU_OSDEP_H
2 #define QEMU_OSDEP_H
4 #include <stdarg.h>
6 int qemu_vsnprintf(char *buf, int buflen, const char *fmt, va_list args);
7 void qemu_vprintf(const char *fmt, va_list ap);
8 void qemu_printf(const char *fmt, ...);
10 void *qemu_malloc(size_t size);
11 void *qemu_mallocz(size_t size);
12 void qemu_free(void *ptr);
14 void *get_mmap_addr(unsigned long size);
16 /* specific kludges for OS compatibility (should be moved elsewhere) */
17 #if defined(__i386__) && !defined(CONFIG_SOFTMMU) && !defined(CONFIG_USER_ONLY)
19 /* disabled pthread version of longjmp which prevent us from using an
20 alternative signal stack */
21 extern void __longjmp(jmp_buf env, int val);
22 #define longjmp __longjmp
24 #endif
26 #endif