]> git.proxmox.com Git - qemu.git/blame - qemu-common.h
AIX's assembler does not support local labels, use relative addressing instead
[qemu.git] / qemu-common.h
CommitLineData
faf07963
PB
1/* Common header file that is included by all of qemu. */
2#ifndef QEMU_COMMON_H
3#define QEMU_COMMON_H
4
5/* we put basic includes here to avoid repeating them in device drivers */
6#include <stdlib.h>
7#include <stdio.h>
8#include <stdarg.h>
9#include <string.h>
c8906845 10#include <strings.h>
faf07963
PB
11#include <inttypes.h>
12#include <limits.h>
13#include <time.h>
14#include <ctype.h>
15#include <errno.h>
16#include <unistd.h>
17#include <fcntl.h>
18#include <sys/stat.h>
19
20#ifndef O_LARGEFILE
21#define O_LARGEFILE 0
22#endif
23#ifndef O_BINARY
24#define O_BINARY 0
25#endif
26
27#ifndef ENOMEDIUM
28#define ENOMEDIUM ENODEV
29#endif
30
31#ifdef _WIN32
4fddf62a 32#define WIN32_LEAN_AND_MEAN
d247d25f 33#define WINVER 0x0501 /* needed for ipv6 bits */
faf07963
PB
34#include <windows.h>
35#define fsync _commit
36#define lseek _lseeki64
37#define ENOTSUP 4096
38extern int qemu_ftruncate64(int, int64_t);
39#define ftruncate qemu_ftruncate64
40
41
42static inline char *realpath(const char *path, char *resolved_path)
43{
44 _fullpath(resolved_path, path, _MAX_PATH);
45 return resolved_path;
46}
47
48#define PRId64 "I64d"
49#define PRIx64 "I64x"
50#define PRIu64 "I64u"
51#define PRIo64 "I64o"
52#endif
53
54/* FIXME: Remove NEED_CPU_H. */
55#ifndef NEED_CPU_H
56
57#include "config-host.h"
58#include <setjmp.h>
59#include "osdep.h"
60#include "bswap.h"
61
62#else
63
64#include "cpu.h"
65
66#endif /* !defined(NEED_CPU_H) */
67
68/* bottom halves */
69typedef struct QEMUBH QEMUBH;
70
71typedef void QEMUBHFunc(void *opaque);
72
73QEMUBH *qemu_bh_new(QEMUBHFunc *cb, void *opaque);
74void qemu_bh_schedule(QEMUBH *bh);
80d3580b
AL
75/* Bottom halfs that are scheduled from a bottom half handler are instantly
76 * invoked. This can create an infinite loop if a bottom half handler
77 * schedules itself. qemu_bh_schedule_idle() avoids this infinite loop by
78 * ensuring that the bottom half isn't executed until the next main loop
79 * iteration.
80 */
1b435b10 81void qemu_bh_schedule_idle(QEMUBH *bh);
faf07963
PB
82void qemu_bh_cancel(QEMUBH *bh);
83void qemu_bh_delete(QEMUBH *bh);
84int qemu_bh_poll(void);
85
87ecb68b
PB
86uint64_t muldiv64(uint64_t a, uint32_t b, uint32_t c);
87
f6503059
AZ
88void qemu_get_timedate(struct tm *tm, int offset);
89int qemu_timedate_diff(struct tm *tm);
90
faf07963
PB
91/* cutils.c */
92void pstrcpy(char *buf, int buf_size, const char *str);
93char *pstrcat(char *buf, int buf_size, const char *s);
94int strstart(const char *str, const char *val, const char **ptr);
95int stristart(const char *str, const char *val, const char **ptr);
96time_t mktimegm(struct tm *tm);
97
cd390083
BS
98#define qemu_isalnum(c) isalnum((unsigned char)(c))
99#define qemu_isalpha(c) isalpha((unsigned char)(c))
100#define qemu_iscntrl(c) iscntrl((unsigned char)(c))
101#define qemu_isdigit(c) isdigit((unsigned char)(c))
102#define qemu_isgraph(c) isgraph((unsigned char)(c))
103#define qemu_islower(c) islower((unsigned char)(c))
104#define qemu_isprint(c) isprint((unsigned char)(c))
105#define qemu_ispunct(c) ispunct((unsigned char)(c))
106#define qemu_isspace(c) isspace((unsigned char)(c))
107#define qemu_isupper(c) isupper((unsigned char)(c))
108#define qemu_isxdigit(c) isxdigit((unsigned char)(c))
109#define qemu_tolower(c) tolower((unsigned char)(c))
110#define qemu_toupper(c) toupper((unsigned char)(c))
111#define qemu_isascii(c) isascii((unsigned char)(c))
112#define qemu_toascii(c) toascii((unsigned char)(c))
113
ca10f867 114void *qemu_malloc(size_t size);
2137b4cc 115void *qemu_realloc(void *ptr, size_t size);
ca10f867
AJ
116void *qemu_mallocz(size_t size);
117void qemu_free(void *ptr);
118char *qemu_strdup(const char *str);
ac4b0d0c 119char *qemu_strndup(const char *str, size_t size);
ca10f867
AJ
120
121void *get_mmap_addr(unsigned long size);
122
123
87ecb68b
PB
124/* Error handling. */
125
126void hw_error(const char *fmt, ...)
127 __attribute__ ((__format__ (__printf__, 1, 2)))
128 __attribute__ ((__noreturn__));
129
130/* IO callbacks. */
131typedef void IOReadHandler(void *opaque, const uint8_t *buf, int size);
132typedef int IOCanRWHandler(void *opaque);
133typedef void IOHandler(void *opaque);
134
135struct ParallelIOArg {
136 void *buffer;
137 int count;
138};
139
140typedef int (*DMA_transfer_handler) (void *opaque, int nchan, int pos, int size);
141
142/* A load of opaque types so that device init declarations don't have to
143 pull in all the real definitions. */
144typedef struct NICInfo NICInfo;
1ae26a18 145typedef struct HCIInfo HCIInfo;
87ecb68b
PB
146typedef struct AudioState AudioState;
147typedef struct BlockDriverState BlockDriverState;
148typedef struct DisplayState DisplayState;
149typedef struct TextConsole TextConsole;
c60e08d9 150typedef TextConsole QEMUConsole;
87ecb68b
PB
151typedef struct CharDriverState CharDriverState;
152typedef struct VLANState VLANState;
153typedef struct QEMUFile QEMUFile;
154typedef struct i2c_bus i2c_bus;
155typedef struct i2c_slave i2c_slave;
156typedef struct SMBusDevice SMBusDevice;
157typedef struct QEMUTimer QEMUTimer;
158typedef struct PCIBus PCIBus;
159typedef struct PCIDevice PCIDevice;
160typedef struct SerialState SerialState;
161typedef struct IRQState *qemu_irq;
162struct pcmcia_card_s;
163
b3c7724c
PB
164/* CPU save/load. */
165void cpu_save(QEMUFile *f, void *opaque);
166int cpu_load(QEMUFile *f, void *opaque, int version_id);
167
9e472e10
AL
168/* Force QEMU to stop what it's doing and service IO */
169void qemu_service_io(void);
170
faf07963 171#endif