2010-05-24 17:26:13 +02: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.
|
|
|
|
*/
|
|
|
|
|
2016-01-29 18:49:55 +01:00
|
|
|
#include "qemu/osdep.h"
|
2010-05-24 17:26:13 +02:00
|
|
|
#include "qemu-common.h"
|
2012-12-17 18:20:00 +01:00
|
|
|
#include "qemu/event_notifier.h"
|
|
|
|
#include "qemu/main-loop.h"
|
2010-05-24 17:26:13 +02:00
|
|
|
|
|
|
|
int event_notifier_init(EventNotifier *e, int active)
|
|
|
|
{
|
2012-11-22 20:56:11 +01:00
|
|
|
e->event = CreateEvent(NULL, TRUE, FALSE, NULL);
|
2010-05-24 17:26:13 +02:00
|
|
|
assert(e->event);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void event_notifier_cleanup(EventNotifier *e)
|
|
|
|
{
|
|
|
|
CloseHandle(e->event);
|
2017-03-02 19:13:08 +01:00
|
|
|
e->event = NULL;
|
2010-05-24 17:26:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
HANDLE event_notifier_get_handle(EventNotifier *e)
|
|
|
|
{
|
|
|
|
return e->event;
|
|
|
|
}
|
|
|
|
|
|
|
|
int event_notifier_set(EventNotifier *e)
|
|
|
|
{
|
|
|
|
SetEvent(e->event);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int event_notifier_test_and_clear(EventNotifier *e)
|
|
|
|
{
|
|
|
|
int ret = WaitForSingleObject(e->event, 0);
|
|
|
|
if (ret == WAIT_OBJECT_0) {
|
|
|
|
ResetEvent(e->event);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|