Dmitry Osipenko | 5b262bb | 2016-09-22 18:13:07 +0100 | [diff] [blame] | 1 | /* |
| 2 | * QTest testcase for the ptimer |
| 3 | * |
Dmitry Osipenko | 673c7e8 | 2016-10-24 16:26:53 +0100 | [diff] [blame] | 4 | * Copyright (c) 2016 Dmitry Osipenko <digetx@gmail.com> |
Dmitry Osipenko | 5b262bb | 2016-09-22 18:13:07 +0100 | [diff] [blame] | 5 | * |
| 6 | * This work is licensed under the terms of the GNU GPL, version 2 or later. |
| 7 | * See the COPYING file in the top-level directory. |
| 8 | * |
| 9 | */ |
| 10 | |
| 11 | #ifndef PTIMER_TEST_H |
| 12 | #define PTIMER_TEST_H |
| 13 | |
| 14 | extern bool qtest_allowed; |
| 15 | |
| 16 | extern int64_t ptimer_test_time_ns; |
| 17 | |
| 18 | struct QEMUTimerList { |
| 19 | QEMUTimer active_timers; |
| 20 | }; |
| 21 | |
| 22 | #endif |