summary refs log tree commit diff stats
path: root/event_notifier.c
diff options
context:
space:
mode:
Diffstat (limited to 'event_notifier.c')
-rw-r--r--event_notifier.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/event_notifier.c b/event_notifier.c
index c339bfee50..99c376c6a3 100644
--- a/event_notifier.c
+++ b/event_notifier.c
@@ -10,11 +10,18 @@
  * See the COPYING file in the top-level directory.
  */
 
+#include "qemu-common.h"
 #include "event_notifier.h"
+
 #ifdef CONFIG_EVENTFD
 #include <sys/eventfd.h>
 #endif
 
+void event_notifier_init_fd(EventNotifier *e, int fd)
+{
+    e->fd = fd;
+}
+
 int event_notifier_init(EventNotifier *e, int active)
 {
 #ifdef CONFIG_EVENTFD