mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 16:23:55 -06:00
event_notifier: move to top-level directory
Has no business in hw/. Signed-off-by: Avi Kivity <avi@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
parent
443916d1d9
commit
2284451019
2 changed files with 0 additions and 1 deletions
16
event_notifier.h
Normal file
16
event_notifier.h
Normal file
|
@ -0,0 +1,16 @@
|
|||
#ifndef QEMU_EVENT_NOTIFIER_H
|
||||
#define QEMU_EVENT_NOTIFIER_H
|
||||
|
||||
#include "qemu-common.h"
|
||||
|
||||
struct EventNotifier {
|
||||
int fd;
|
||||
};
|
||||
|
||||
int event_notifier_init(EventNotifier *, int active);
|
||||
void event_notifier_cleanup(EventNotifier *);
|
||||
int event_notifier_get_fd(EventNotifier *);
|
||||
int event_notifier_test_and_clear(EventNotifier *);
|
||||
int event_notifier_test(EventNotifier *);
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue