]> git.proxmox.com Git - mirror_qemu.git/blame - include/sysemu/qtest.h
Merge tag 'pull-maintainer-may24-160524-2' of https://gitlab.com/stsquad/qemu into...
[mirror_qemu.git] / include / sysemu / qtest.h
CommitLineData
c7f0f3b1
AL
1/*
2 * Test Server
3 *
4 * Copyright IBM, Corp. 2011
5 *
6 * Authors:
7 * Anthony Liguori <aliguori@us.ibm.com>
8 *
9 * This work is licensed under the terms of the GNU GPL, version 2 or later.
10 * See the COPYING file in the top-level directory.
11 *
12 */
13
14#ifndef QTEST_H
15#define QTEST_H
16
c7a6bf5d 17#include "chardev/char.h"
c7f0f3b1 18
d5286af5 19extern bool qtest_allowed;
c7f0f3b1
AL
20
21static inline bool qtest_enabled(void)
22{
23 return qtest_allowed;
24}
25
60144cf5 26#ifndef CONFIG_USER_ONLY
c7a6bf5d
TH
27void qtest_send_prefix(CharBackend *chr);
28void G_GNUC_PRINTF(2, 3) qtest_sendf(CharBackend *chr, const char *fmt, ...);
29void qtest_set_command_cb(bool (*pc_cb)(CharBackend *chr, gchar **words));
b3be57c3
MT
30bool qtest_driver(void);
31
2b8985f1 32void qtest_server_init(const char *qtest_chrdev, const char *qtest_log, Error **errp);
d4fce24f 33
e731d083
AB
34void qtest_server_set_send_handler(void (*send)(void *, const char *),
35 void *opaque);
0bd9aef8 36void qtest_server_inproc_recv(void *opaque, const char *buf);
e731d083 37
740b1759 38int64_t qtest_get_virtual_clock(void);
60144cf5 39#endif
740b1759 40
c7f0f3b1 41#endif