diff options
| author | Alex Bligh <alex@alex.org.uk> | 2013-08-21 16:02:48 +0100 |
|---|---|---|
| committer | Stefan Hajnoczi <stefanha@redhat.com> | 2013-08-22 19:10:27 +0200 |
| commit | 754d6a544d044bddeef87e9a63b4f511f59f3c4e (patch) | |
| tree | 294e47851b21c481259cc0dcf197a4c6237ddcc6 /include/qemu/typedefs.h | |
| parent | 6a1751b7aad6e38e9d1ae6bcea72fa28bf6cc5fb (diff) | |
| download | focaccia-qemu-754d6a544d044bddeef87e9a63b4f511f59f3c4e.tar.gz focaccia-qemu-754d6a544d044bddeef87e9a63b4f511f59f3c4e.zip | |
aio / timers: Add QEMUTimerListGroup and helper functions
Add QEMUTimerListGroup and helper functions, to represent a QEMUTimerList associated with each clock. Add a default QEMUTimerListGroup representing the default timer lists which are not associated with any other object (e.g. an AioContext as added by future patches). Signed-off-by: Alex Bligh <alex@alex.org.uk> Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Diffstat (limited to 'include/qemu/typedefs.h')
| -rw-r--r-- | include/qemu/typedefs.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/qemu/typedefs.h b/include/qemu/typedefs.h index cae94ff57e..3205540059 100644 --- a/include/qemu/typedefs.h +++ b/include/qemu/typedefs.h @@ -4,6 +4,7 @@ /* A load of opaque types so that device init declarations don't have to pull in all the real definitions. */ typedef struct QEMUTimer QEMUTimer; +typedef struct QEMUTimerListGroup QEMUTimerListGroup; typedef struct QEMUFile QEMUFile; typedef struct QEMUBH QEMUBH; |