]>
Commit | Line | Data |
---|---|---|
376253ec AL |
1 | #ifndef MONITOR_H |
2 | #define MONITOR_H | |
3 | ||
4 | #include "qemu-common.h" | |
5 | #include "qemu-char.h" | |
6 | #include "block.h" | |
7 | ||
8 | extern Monitor *cur_mon; | |
9 | ||
731b0364 AL |
10 | /* flags for monitor_init */ |
11 | #define MONITOR_IS_DEFAULT 0x01 | |
cde76ee1 | 12 | #define MONITOR_USE_READLINE 0x02 |
731b0364 AL |
13 | |
14 | void monitor_init(CharDriverState *chr, int flags); | |
376253ec | 15 | |
cde76ee1 | 16 | int monitor_suspend(Monitor *mon); |
376253ec AL |
17 | void monitor_resume(Monitor *mon); |
18 | ||
19 | void monitor_read_bdrv_key_start(Monitor *mon, BlockDriverState *bs, | |
20 | BlockDriverCompletionFunc *completion_cb, | |
21 | void *opaque); | |
22 | ||
7768e04c MM |
23 | int monitor_get_fd(Monitor *mon, const char *fdname); |
24 | ||
376253ec AL |
25 | void monitor_vprintf(Monitor *mon, const char *fmt, va_list ap); |
26 | void monitor_printf(Monitor *mon, const char *fmt, ...) | |
27 | __attribute__ ((__format__ (__printf__, 2, 3))); | |
28 | void monitor_print_filename(Monitor *mon, const char *filename); | |
29 | void monitor_flush(Monitor *mon); | |
30 | ||
31 | #endif /* !MONITOR_H */ |