1 /* Common header file that is included by all of qemu. */
5 /* we put basic includes here to avoid repeating them in device drivers */
27 #define ENOMEDIUM ENODEV
31 #define WIN32_LEAN_AND_MEAN
34 #define lseek _lseeki64
36 extern int qemu_ftruncate64(int, int64_t);
37 #define ftruncate qemu_ftruncate64
40 static inline char *realpath(const char *path, char *resolved_path)
42 _fullpath(resolved_path, path, _MAX_PATH);
52 /* FIXME: Remove NEED_CPU_H. */
55 #include "config-host.h"
64 #endif /* !defined(NEED_CPU_H) */
67 typedef struct QEMUBH QEMUBH;
69 typedef void QEMUBHFunc(void *opaque);
71 QEMUBH *qemu_bh_new(QEMUBHFunc *cb, void *opaque);
72 void qemu_bh_schedule(QEMUBH *bh);
73 /* Bottom halfs that are scheduled from a bottom half handler are instantly
74 * invoked. This can create an infinite loop if a bottom half handler
75 * schedules itself. qemu_bh_schedule_idle() avoids this infinite loop by
76 * ensuring that the bottom half isn't executed until the next main loop
79 void qemu_bh_schedule_idle(QEMUBH *bh);
80 void qemu_bh_cancel(QEMUBH *bh);
81 void qemu_bh_delete(QEMUBH *bh);
82 int qemu_bh_poll(void);
84 uint64_t muldiv64(uint64_t a, uint32_t b, uint32_t c);
86 void qemu_get_timedate(struct tm *tm, int offset);
87 int qemu_timedate_diff(struct tm *tm);
90 void pstrcpy(char *buf, int buf_size, const char *str);
91 char *pstrcat(char *buf, int buf_size, const char *s);
92 int strstart(const char *str, const char *val, const char **ptr);
93 int stristart(const char *str, const char *val, const char **ptr);
94 time_t mktimegm(struct tm *tm);
96 void *qemu_malloc(size_t size);
97 void *qemu_realloc(void *ptr, size_t size);
98 void *qemu_mallocz(size_t size);
99 void qemu_free(void *ptr);
100 char *qemu_strdup(const char *str);
101 char *qemu_strndup(const char *str, size_t size);
103 void *get_mmap_addr(unsigned long size);
106 /* Error handling. */
108 void hw_error(const char *fmt, ...)
109 __attribute__ ((__format__ (__printf__, 1, 2)))
110 __attribute__ ((__noreturn__));
113 typedef void IOReadHandler(void *opaque, const uint8_t *buf, int size);
114 typedef int IOCanRWHandler(void *opaque);
115 typedef void IOHandler(void *opaque);
117 struct ParallelIOArg {
122 typedef int (*DMA_transfer_handler) (void *opaque, int nchan, int pos, int size);
124 /* A load of opaque types so that device init declarations don't have to
125 pull in all the real definitions. */
126 typedef struct NICInfo NICInfo;
127 typedef struct HCIInfo HCIInfo;
128 typedef struct AudioState AudioState;
129 typedef struct BlockDriverState BlockDriverState;
130 typedef struct DisplayState DisplayState;
131 typedef struct TextConsole TextConsole;
132 typedef TextConsole QEMUConsole;
133 typedef struct CharDriverState CharDriverState;
134 typedef struct VLANState VLANState;
135 typedef struct QEMUFile QEMUFile;
136 typedef struct i2c_bus i2c_bus;
137 typedef struct i2c_slave i2c_slave;
138 typedef struct SMBusDevice SMBusDevice;
139 typedef struct QEMUTimer QEMUTimer;
140 typedef struct PCIBus PCIBus;
141 typedef struct PCIDevice PCIDevice;
142 typedef struct SerialState SerialState;
143 typedef struct IRQState *qemu_irq;
144 struct pcmcia_card_s;
147 void cpu_save(QEMUFile *f, void *opaque);
148 int cpu_load(QEMUFile *f, void *opaque, int version_id);
150 /* Force QEMU to stop what it's doing and service IO */
151 void qemu_service_io(void);