4 * Copyright IBM, Corp. 2010
7 * Anthony Liguori <aliguori@us.ibm.com>
9 * This work is licensed under the terms of the GNU GPL, version 2. See
10 * the COPYING file in the top-level directory.
17 #include "qemu-queue.h"
19 typedef struct Notifier Notifier;
23 void (*notify)(Notifier *notifier, void *data);
24 QLIST_ENTRY(Notifier) node;
27 typedef struct NotifierList
29 QLIST_HEAD(, Notifier) notifiers;
32 #define NOTIFIER_LIST_INITIALIZER(head) \
33 { QLIST_HEAD_INITIALIZER((head).notifiers) }
35 void notifier_list_init(NotifierList *list);
37 void notifier_list_add(NotifierList *list, Notifier *notifier);
39 void notifier_remove(Notifier *notifier);
41 void notifier_list_notify(NotifierList *list, void *data);