aboutsummaryrefslogtreecommitdiffstats
path: root/notify.h
diff options
context:
space:
mode:
authorDavid Turner <digit@android.com>2010-09-10 14:52:42 +0200
committerDavid 'Digit' Turner <digit@android.com>2010-09-13 00:30:35 -0700
commit025c32ffcd9f682cd761a836fe8798738d1648f2 (patch)
tree8a81f5835f64cb4ad230d8d8dbdb84c60457108d /notify.h
parent5fbe340e4937c4df99b1064178076a85e341ca89 (diff)
downloadexternal_qemu-025c32ffcd9f682cd761a836fe8798738d1648f2.zip
external_qemu-025c32ffcd9f682cd761a836fe8798738d1648f2.tar.gz
external_qemu-025c32ffcd9f682cd761a836fe8798738d1648f2.tar.bz2
upstream: console changes.
Diffstat (limited to 'notify.h')
-rw-r--r--notify.h43
1 files changed, 43 insertions, 0 deletions
diff --git a/notify.h b/notify.h
new file mode 100644
index 0000000..b40522f
--- /dev/null
+++ b/notify.h
@@ -0,0 +1,43 @@
+/*
+ * Notifier lists
+ *
+ * Copyright IBM, Corp. 2010
+ *
+ * Authors:
+ * Anthony Liguori <aliguori@us.ibm.com>
+ *
+ * This work is licensed under the terms of the GNU GPL, version 2. See
+ * the COPYING file in the top-level directory.
+ *
+ */
+
+#ifndef QEMU_NOTIFY_H
+#define QEMU_NOTIFY_H
+
+#include "qemu-queue.h"
+
+typedef struct Notifier Notifier;
+
+struct Notifier
+{
+ void (*notify)(Notifier *notifier);
+ QTAILQ_ENTRY(Notifier) node;
+};
+
+typedef struct NotifierList
+{
+ QTAILQ_HEAD(, Notifier) notifiers;
+} NotifierList;
+
+#define NOTIFIER_LIST_INITIALIZER(head) \
+ { QTAILQ_HEAD_INITIALIZER((head).notifiers) }
+
+void notifier_list_init(NotifierList *list);
+
+void notifier_list_add(NotifierList *list, Notifier *notifier);
+
+void notifier_list_remove(NotifierList *list, Notifier *notifier);
+
+void notifier_list_notify(NotifierList *list);
+
+#endif