]>
git.proxmox.com Git - mirror_qemu.git/blob - util/event_notifier-posix.c
2 * event notifier support
4 * Copyright Red Hat, Inc. 2010
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 #include "qemu-common.h"
14 #include "qemu/event_notifier.h"
15 #include "sysemu/char.h"
16 #include "qemu/main-loop.h"
19 #include <sys/eventfd.h>
22 void event_notifier_init_fd(EventNotifier
*e
, int fd
)
28 int event_notifier_init(EventNotifier
*e
, int active
)
34 ret
= eventfd(0, EFD_NONBLOCK
| EFD_CLOEXEC
);
40 e
->rfd
= e
->wfd
= ret
;
42 if (errno
!= ENOSYS
) {
45 if (qemu_pipe(fds
) < 0) {
48 ret
= fcntl_setfl(fds
[0], O_NONBLOCK
);
53 ret
= fcntl_setfl(fds
[1], O_NONBLOCK
);
62 event_notifier_set(e
);
72 void event_notifier_cleanup(EventNotifier
*e
)
74 if (e
->rfd
!= e
->wfd
) {
80 int event_notifier_get_fd(const EventNotifier
*e
)
85 int event_notifier_set_handler(EventNotifier
*e
,
86 EventNotifierHandler
*handler
)
88 qemu_set_fd_handler(e
->rfd
, (IOHandler
*)handler
, NULL
, e
);
92 int event_notifier_set(EventNotifier
*e
)
94 static const uint64_t value
= 1;
98 ret
= write(e
->wfd
, &value
, sizeof(value
));
99 } while (ret
< 0 && errno
== EINTR
);
101 /* EAGAIN is fine, a read must be pending. */
102 if (ret
< 0 && errno
!= EAGAIN
) {
108 int event_notifier_test_and_clear(EventNotifier
*e
)
114 /* Drain the notify pipe. For eventfd, only 8 bytes will be read. */
117 len
= read(e
->rfd
, buffer
, sizeof(buffer
));
119 } while ((len
== -1 && errno
== EINTR
) || len
== sizeof(buffer
));