xref: /openbmc/qemu/accel/tcg/internal-common.h (revision 5934660f)
1 /*
2  * Internal execution defines for qemu (target agnostic)
3  *
4  *  Copyright (c) 2003 Fabrice Bellard
5  *
6  * SPDX-License-Identifier: LGPL-2.1-or-later
7  */
8 
9 #ifndef ACCEL_TCG_INTERNAL_COMMON_H
10 #define ACCEL_TCG_INTERNAL_COMMON_H
11 
12 extern int64_t max_delay;
13 extern int64_t max_advance;
14 
15 void dump_exec_info(GString *buf);
16 
17 #endif
18