diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2012-07-05 17:16:23 +0200 |
---|---|---|
committer | Avi Kivity <avi@redhat.com> | 2012-07-12 14:06:12 +0300 |
commit | ebe7acea532fba4a0ad7aaf74e59bff729867d93 (patch) | |
tree | 5314160e5a29cf2ebabe87bac4eada2aecd20c6b /event_notifier.c | |
parent | 2ec10b952b40d287037a50387a8b66d9ccc5124b (diff) |
event_notifier: remove event_notifier_test
The function is useless (and unused).
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'event_notifier.c')
-rw-r--r-- | event_notifier.c | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/event_notifier.c b/event_notifier.c index 2b210f4b44..c339bfee50 100644 --- a/event_notifier.c +++ b/event_notifier.c @@ -51,18 +51,3 @@ int event_notifier_test_and_clear(EventNotifier *e) int r = read(e->fd, &value, sizeof(value)); return r == sizeof(value); } - -int event_notifier_test(EventNotifier *e) -{ - uint64_t value; - int r = read(e->fd, &value, sizeof(value)); - if (r == sizeof(value)) { - /* restore previous value. */ - int s = write(e->fd, &value, sizeof(value)); - /* never blocks because we use EFD_SEMAPHORE. - * If we didn't we'd get EAGAIN on overflow - * and we'd have to write code to ignore it. */ - assert(s == sizeof(value)); - } - return r == sizeof(value); -} |