mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-22 13:45:38 +00:00
Rename event_poll.{c,h} to vireventpoll.{c,h}
This commit is contained in:
parent
4857b9c3a9
commit
4d6050a8eb
@ -138,7 +138,6 @@ src/storage/storage_driver.c
|
||||
src/test/test_driver.c
|
||||
src/uml/uml_conf.c
|
||||
src/uml/uml_driver.c
|
||||
src/util/event_poll.c
|
||||
src/util/hooks.c
|
||||
src/util/hostusb.c
|
||||
src/util/iohelper.c
|
||||
@ -159,6 +158,7 @@ src/util/vircommand.c
|
||||
src/util/virconf.c
|
||||
src/util/virdbus.c
|
||||
src/util/virdnsmasq.c
|
||||
src/util/vireventpoll.c
|
||||
src/util/virfile.c
|
||||
src/util/virhash.c
|
||||
src/util/virinitctl.c
|
||||
|
@ -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_poll.c util/event_poll.h \
|
||||
util/hooks.c util/hooks.h \
|
||||
util/iptables.c util/iptables.h \
|
||||
util/json.c util/json.h \
|
||||
@ -84,6 +83,7 @@ UTIL_SOURCES = \
|
||||
util/virdnsmasq.c util/virdnsmasq.h \
|
||||
util/virebtables.c util/virebtables.h \
|
||||
util/virevent.c util/virevent.h \
|
||||
util/vireventpoll.c util/vireventpoll.h \
|
||||
util/virfile.c util/virfile.h \
|
||||
util/virnodesuspend.c util/virnodesuspend.h \
|
||||
util/virobject.c util/virobject.h \
|
||||
|
@ -41,7 +41,7 @@
|
||||
#endif
|
||||
|
||||
#include "virnetservermdns.h"
|
||||
#include "event_poll.h"
|
||||
#include "vireventpoll.h"
|
||||
#include "memory.h"
|
||||
#include "virterror_internal.h"
|
||||
#include "logging.h"
|
||||
|
@ -24,7 +24,7 @@
|
||||
#include <config.h>
|
||||
|
||||
#include "virevent.h"
|
||||
#include "event_poll.h"
|
||||
#include "vireventpoll.h"
|
||||
#include "logging.h"
|
||||
#include "virterror_internal.h"
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* event.c: event loop for monitoring file handles
|
||||
* vireventpoll.c: Poll based event loop for monitoring file handles
|
||||
*
|
||||
* Copyright (C) 2007, 2010-2012 Red Hat, Inc.
|
||||
* Copyright (C) 2007 Daniel P. Berrange
|
||||
@ -33,7 +33,7 @@
|
||||
|
||||
#include "threads.h"
|
||||
#include "logging.h"
|
||||
#include "event_poll.h"
|
||||
#include "vireventpoll.h"
|
||||
#include "memory.h"
|
||||
#include "util.h"
|
||||
#include "virfile.h"
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* event.h: event loop for monitoring file handles
|
||||
* vireventpool.h: Poll based event loop for monitoring file handles
|
||||
*
|
||||
* Copyright (C) 2007 Daniel P. Berrange
|
||||
* Copyright (C) 2007 Red Hat, Inc.
|
@ -31,7 +31,7 @@
|
||||
#include "threads.h"
|
||||
#include "logging.h"
|
||||
#include "util.h"
|
||||
#include "event_poll.h"
|
||||
#include "vireventpoll.h"
|
||||
|
||||
#define NUM_FDS 31
|
||||
#define NUM_TIME 31
|
||||
|
@ -63,7 +63,6 @@
|
||||
#include "xml.h"
|
||||
#include "libvirt/libvirt-qemu.h"
|
||||
#include "virfile.h"
|
||||
#include "event_poll.h"
|
||||
#include "configmake.h"
|
||||
#include "threads.h"
|
||||
#include "vircommand.h"
|
||||
|
Loading…
Reference in New Issue
Block a user