2010-03-09 20:16:14 +01:00
|
|
|
/*
|
|
|
|
* 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.
|
|
|
|
*
|
2012-01-13 17:44:23 +01:00
|
|
|
* Contributions after 2012-01-13 are licensed under the terms of the
|
|
|
|
* GNU GPL, version 2 or (at your option) any later version.
|
2010-03-09 20:16:14 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "qemu-common.h"
|
|
|
|
#include "notify.h"
|
|
|
|
|
|
|
|
void notifier_list_init(NotifierList *list)
|
|
|
|
{
|
2012-01-13 17:34:01 +01:00
|
|
|
QLIST_INIT(&list->notifiers);
|
2010-03-09 20:16:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void notifier_list_add(NotifierList *list, Notifier *notifier)
|
|
|
|
{
|
2012-01-13 17:34:01 +01:00
|
|
|
QLIST_INSERT_HEAD(&list->notifiers, notifier, node);
|
2010-03-09 20:16:14 +01:00
|
|
|
}
|
|
|
|
|
2012-01-13 17:34:01 +01:00
|
|
|
void notifier_remove(Notifier *notifier)
|
2010-03-09 20:16:14 +01:00
|
|
|
{
|
2012-01-13 17:34:01 +01:00
|
|
|
QLIST_REMOVE(notifier, node);
|
2010-03-09 20:16:14 +01:00
|
|
|
}
|
|
|
|
|
2011-06-20 14:06:26 +02:00
|
|
|
void notifier_list_notify(NotifierList *list, void *data)
|
2010-03-09 20:16:14 +01:00
|
|
|
{
|
|
|
|
Notifier *notifier, *next;
|
|
|
|
|
2012-01-13 17:34:01 +01:00
|
|
|
QLIST_FOREACH_SAFE(notifier, &list->notifiers, node, next) {
|
2011-06-20 14:06:26 +02:00
|
|
|
notifier->notify(notifier, data);
|
2010-03-09 20:16:14 +01:00
|
|
|
}
|
|
|
|
}
|