memory: pass EventNotifier, not eventfd
[qemu-kvm.git] / event_notifier.h
blobfd3d9427b5fbed82c0fcbf3f79f8e0468cf1fd88
1 /*
2 * event notifier support
4 * Copyright Red Hat, Inc. 2010
6 * Authors:
7 * Michael S. Tsirkin <mst@redhat.com>
9 * This work is licensed under the terms of the GNU GPL, version 2 or later.
10 * See the COPYING file in the top-level directory.
13 #ifndef QEMU_EVENT_NOTIFIER_H
14 #define QEMU_EVENT_NOTIFIER_H
16 #include "qemu-common.h"
18 struct EventNotifier {
19 int fd;
22 void event_notifier_init_fd(EventNotifier *, int fd);
23 int event_notifier_init(EventNotifier *, int active);
24 void event_notifier_cleanup(EventNotifier *);
25 int event_notifier_get_fd(EventNotifier *);
26 int event_notifier_set(EventNotifier *);
27 int event_notifier_test_and_clear(EventNotifier *);
29 #endif