diff options
Diffstat (limited to 'async.c')
-rw-r--r-- | async.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -35,10 +35,10 @@ static struct QEMUBH *first_bh; struct QEMUBH { QEMUBHFunc *cb; void *opaque; - int scheduled; - int idle; - int deleted; QEMUBH *next; + bool scheduled; + bool idle; + bool deleted; }; QEMUBH *qemu_bh_new(QEMUBHFunc *cb, void *opaque) |