mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-03 03:25:20 +00:00
Rename event.{c,h} to virevent.{c,h}
Since the event APIs are now in the public header, no internal code should include virevent.h
This commit is contained in:
parent
f14b5bce73
commit
4857b9c3a9
@ -53,7 +53,6 @@ augeastest_DATA =
|
||||
# These files are not related to driver APIs. Simply generic
|
||||
# helper APIs for various purposes
|
||||
UTIL_SOURCES = \
|
||||
util/event.c util/event.h \
|
||||
util/event_poll.c util/event_poll.h \
|
||||
util/hooks.c util/hooks.h \
|
||||
util/iptables.c util/iptables.h \
|
||||
@ -84,6 +83,7 @@ UTIL_SOURCES = \
|
||||
util/virconf.c util/virconf.h \
|
||||
util/virdnsmasq.c util/virdnsmasq.h \
|
||||
util/virebtables.c util/virebtables.h \
|
||||
util/virevent.c util/virevent.h \
|
||||
util/virfile.c util/virfile.h \
|
||||
util/virnodesuspend.c util/virnodesuspend.h \
|
||||
util/virobject.c util/virobject.h \
|
||||
|
@ -27,7 +27,6 @@
|
||||
#include "memory.h"
|
||||
#include "virterror_internal.h"
|
||||
#include "logging.h"
|
||||
#include "event.h"
|
||||
#include "threads.h"
|
||||
|
||||
#define VIR_FROM_THIS VIR_FROM_RPC
|
||||
|
@ -35,7 +35,6 @@
|
||||
#include "threadpool.h"
|
||||
#include "util.h"
|
||||
#include "virfile.h"
|
||||
#include "event.h"
|
||||
#include "virnetservermdns.h"
|
||||
#include "virdbus.h"
|
||||
|
||||
|
@ -41,7 +41,6 @@
|
||||
#endif
|
||||
|
||||
#include "virnetservermdns.h"
|
||||
#include "event.h"
|
||||
#include "event_poll.h"
|
||||
#include "memory.h"
|
||||
#include "virterror_internal.h"
|
||||
|
@ -46,7 +46,6 @@
|
||||
#include "virterror_internal.h"
|
||||
#include "logging.h"
|
||||
#include "virfile.h"
|
||||
#include "event.h"
|
||||
#include "threads.h"
|
||||
#include "virprocess.h"
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* event.c: event loop for monitoring file handles
|
||||
* virevent.c: event loop for monitoring file handles
|
||||
*
|
||||
* Copyright (C) 2007, 2011 Red Hat, Inc.
|
||||
* Copyright (C) 2007 Daniel P. Berrange
|
||||
@ -23,7 +23,7 @@
|
||||
|
||||
#include <config.h>
|
||||
|
||||
#include "event.h"
|
||||
#include "virevent.h"
|
||||
#include "event_poll.h"
|
||||
#include "logging.h"
|
||||
#include "virterror_internal.h"
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* event.h: event loop for monitoring file handles
|
||||
* virevent.h: event loop for monitoring file handles
|
||||
*
|
||||
* Copyright (C) 2007 Daniel P. Berrange
|
||||
* Copyright (C) 2007 Red Hat, Inc.
|
@ -31,7 +31,6 @@
|
||||
#include "threads.h"
|
||||
#include "logging.h"
|
||||
#include "util.h"
|
||||
#include "event.h"
|
||||
#include "event_poll.h"
|
||||
|
||||
#define NUM_FDS 31
|
||||
|
Loading…
Reference in New Issue
Block a user