Files
xemu/util/notify.c
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

78 lines
1.8 KiB
C
Raw Normal View History

2010-03-09 13:16:14 -06: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 13:16:14 -06:00
*/
2016-01-29 17:49:55 +00:00
#include "qemu/osdep.h"
2012-12-17 18:20:00 +01:00
#include "qemu/notify.h"
2010-03-09 13:16:14 -06:00
void notifier_list_init(NotifierList *list)
{
2012-01-13 17:34:01 +01:00
QLIST_INIT(&list->notifiers);
2010-03-09 13:16:14 -06: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 13:16:14 -06:00
}
2012-01-13 17:34:01 +01:00
void notifier_remove(Notifier *notifier)
2010-03-09 13:16:14 -06:00
{
2012-01-13 17:34:01 +01:00
QLIST_REMOVE(notifier, node);
2010-03-09 13:16:14 -06:00
}
2011-06-20 14:06:26 +02:00
void notifier_list_notify(NotifierList *list, void *data)
2010-03-09 13:16:14 -06: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 13:16:14 -06:00
}
}
bool notifier_list_empty(NotifierList *list)
{
return QLIST_EMPTY(&list->notifiers);
}
void notifier_with_return_list_init(NotifierWithReturnList *list)
{
QLIST_INIT(&list->notifiers);
}
void notifier_with_return_list_add(NotifierWithReturnList *list,
NotifierWithReturn *notifier)
{
QLIST_INSERT_HEAD(&list->notifiers, notifier, node);
}
void notifier_with_return_remove(NotifierWithReturn *notifier)
{
QLIST_REMOVE(notifier, node);
}
2024-02-22 09:28:27 -08:00
int notifier_with_return_list_notify(NotifierWithReturnList *list, void *data,
Error **errp)
{
NotifierWithReturn *notifier, *next;
int ret = 0;
QLIST_FOREACH_SAFE(notifier, &list->notifiers, node, next) {
2024-02-22 09:28:27 -08:00
ret = notifier->notify(notifier, data, errp);
if (ret != 0) {
break;
}
}
return ret;
}