2012-01-13 17:44:23 +01:00
|
|
|
/*
|
|
|
|
* event notifier support
|
|
|
|
*
|
|
|
|
* Copyright Red Hat, Inc. 2010
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Michael S. Tsirkin <mst@redhat.com>
|
|
|
|
*
|
|
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
|
|
|
* See the COPYING file in the top-level directory.
|
|
|
|
*/
|
|
|
|
|
2010-03-17 12:07:58 +01:00
|
|
|
#ifndef QEMU_EVENT_NOTIFIER_H
|
|
|
|
#define QEMU_EVENT_NOTIFIER_H
|
|
|
|
|
|
|
|
|
2010-05-24 17:26:13 +02:00
|
|
|
#ifdef _WIN32
|
|
|
|
#include <windows.h>
|
|
|
|
#endif
|
|
|
|
|
2010-03-17 12:07:58 +01:00
|
|
|
struct EventNotifier {
|
2010-05-24 17:26:13 +02:00
|
|
|
#ifdef _WIN32
|
|
|
|
HANDLE event;
|
|
|
|
#else
|
2010-05-24 17:17:04 +02:00
|
|
|
int rfd;
|
|
|
|
int wfd;
|
2020-12-17 16:00:40 +01:00
|
|
|
bool initialized;
|
2010-05-24 17:26:13 +02:00
|
|
|
#endif
|
2010-03-17 12:07:58 +01:00
|
|
|
};
|
|
|
|
|
2012-07-05 17:16:28 +02:00
|
|
|
typedef void EventNotifierHandler(EventNotifier *);
|
|
|
|
|
2010-03-17 12:07:58 +01:00
|
|
|
int event_notifier_init(EventNotifier *, int active);
|
|
|
|
void event_notifier_cleanup(EventNotifier *);
|
2012-07-05 17:16:22 +02:00
|
|
|
int event_notifier_set(EventNotifier *);
|
2010-03-17 12:07:58 +01:00
|
|
|
int event_notifier_test_and_clear(EventNotifier *);
|
|
|
|
|
2010-05-24 17:26:13 +02:00
|
|
|
#ifdef CONFIG_POSIX
|
|
|
|
void event_notifier_init_fd(EventNotifier *, int fd);
|
2015-10-13 12:12:16 +02:00
|
|
|
int event_notifier_get_fd(const EventNotifier *);
|
2022-03-04 11:08:51 +01:00
|
|
|
int event_notifier_get_wfd(const EventNotifier *);
|
2010-05-24 17:26:13 +02:00
|
|
|
#else
|
|
|
|
HANDLE event_notifier_get_handle(EventNotifier *);
|
|
|
|
#endif
|
|
|
|
|
2010-03-17 12:07:58 +01:00
|
|
|
#endif
|