diff mbox

[uq/master,3/9] event_notifier: add event_notifier_init_fd

Message ID 1341501390-797-4-git-send-email-pbonzini@redhat.com (mailing list archive)
State New, archived
Headers show

Commit Message

Paolo Bonzini July 5, 2012, 3:16 p.m. UTC
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
 event_notifier.c |    7 +++++++
 event_notifier.h |    3 ++-
 2 files changed, 9 insertions(+), 1 deletion(-)

Comments

Avi Kivity July 12, 2012, 9:11 a.m. UTC | #1
On 07/05/2012 06:16 PM, Paolo Bonzini wrote:
>  
>  struct EventNotifier {
> -	int fd;
> +        int fd;
>  };
>  


If you're fixing whitespace, might as well fix it correctly.
diff mbox

Patch

diff --git a/event_notifier.c b/event_notifier.c
index c339bfe..99c376c 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
diff --git a/event_notifier.h b/event_notifier.h
index 9b2edf4..30c12dd 100644
--- a/event_notifier.h
+++ b/event_notifier.h
@@ -16,9 +16,10 @@ 
 #include "qemu-common.h"
 
 struct EventNotifier {
-	int fd;
+        int fd;
 };
 
+void event_notifier_init_fd(EventNotifier *, int fd);
 int event_notifier_init(EventNotifier *, int active);
 void event_notifier_cleanup(EventNotifier *);
 int event_notifier_get_fd(EventNotifier *);