1 Star 0 Fork 0

湖南大学-谭怀亮/qemu-xen-traditional

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
notify.c 768 Bytes
一键复制 编辑 原始数据 按行查看 历史
/*
* 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.
*
*/
#include "qemu-common.h"
#include "notify.h"
void notifier_list_init(NotifierList *list)
{
LIST_INIT(&list->notifiers);
}
void notifier_list_add(NotifierList *list, Notifier *notifier)
{
LIST_INSERT_HEAD(&list->notifiers, notifier, node);
}
void notifier_list_remove(Notifier *notifier)
{
LIST_REMOVE(notifier, node);
}
void notifier_list_notify(NotifierList *list)
{
Notifier *notifier, *next;
LIST_FOREACH_SAFE(notifier, &list->notifiers, node, next) {
notifier->notify(notifier);
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/hunan-university-embedded-lab/qemu-xen-traditional.git
git@gitee.com:hunan-university-embedded-lab/qemu-xen-traditional.git
hunan-university-embedded-lab
qemu-xen-traditional
qemu-xen-traditional
master

搜索帮助