Rename hooks.{c,h} to virhook.{c,h}

This commit is contained in:
Daniel P. Berrange 2012-12-12 17:00:34 +00:00
parent 4d6050a8eb
commit 30f3a005ff
10 changed files with 11 additions and 11 deletions

View File

@ -53,7 +53,7 @@
#include "threads.h"
#include "remote.h"
#include "remote_driver.h"
#include "hooks.h"
#include "virhook.h"
#include "uuid.h"
#include "viraudit.h"
#include "locking/lock_manager.h"

View File

@ -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/hooks.c
src/util/hostusb.c
src/util/iohelper.c
src/util/iptables.c
@ -161,6 +160,7 @@ src/util/virdnsmasq.c
src/util/vireventpoll.c
src/util/virfile.c
src/util/virhash.c
src/util/virhook.c
src/util/virinitctl.c
src/util/virkeyfile.c
src/util/virlockspace.c

View File

@ -53,7 +53,6 @@ augeastest_DATA =
# These files are not related to driver APIs. Simply generic
# helper APIs for various purposes
UTIL_SOURCES = \
util/hooks.c util/hooks.h \
util/iptables.c util/iptables.h \
util/json.c util/json.h \
util/logging.c util/logging.h \
@ -85,6 +84,7 @@ UTIL_SOURCES = \
util/virevent.c util/virevent.h \
util/vireventpoll.c util/vireventpoll.h \
util/virfile.c util/virfile.h \
util/virhook.c util/virhook.h \
util/virnodesuspend.c util/virnodesuspend.h \
util/virobject.c util/virobject.h \
util/virpidfile.c util/virpidfile.h \

View File

@ -52,7 +52,7 @@
#include "nodeinfo.h"
#include "uuid.h"
#include "stats_linux.h"
#include "hooks.h"
#include "virhook.h"
#include "virfile.h"
#include "virpidfile.h"
#include "fdstream.h"

View File

@ -43,8 +43,8 @@
#include "virterror_internal.h"
#include "logging.h"
#include "vircommand.h"
#include "hooks.h"
#include "lxc_hostdev.h"
#include "virhook.h"
#define VIR_FROM_THIS VIR_FROM_LXC

View File

@ -79,7 +79,7 @@
#include "cpu/cpu.h"
#include "sysinfo.h"
#include "domain_nwfilter.h"
#include "hooks.h"
#include "virhook.h"
#include "storage_file.h"
#include "virfile.h"
#include "fdstream.h"

View File

@ -49,7 +49,7 @@
#include "rpc/virnetsocket.h"
#include "storage_file.h"
#include "viruri.h"
#include "hooks.h"
#include "virhook.h"
#define VIR_FROM_THIS VIR_FROM_QEMU

View File

@ -54,7 +54,7 @@
#include "logging.h"
#include "virterror_internal.h"
#include "memory.h"
#include "hooks.h"
#include "virhook.h"
#include "virfile.h"
#include "virpidfile.h"
#include "util.h"

View File

@ -1,5 +1,5 @@
/*
* hooks.c: implementation of the synchronous hooks support
* virhook.c: implementation of the synchronous hooks support
*
* Copyright (C) 2010-2012 Red Hat, Inc.
* Copyright (C) 2010 Daniel Veillard
@ -31,7 +31,7 @@
#include <stdio.h>
#include "virterror_internal.h"
#include "hooks.h"
#include "virhook.h"
#include "util.h"
#include "logging.h"
#include "memory.h"

View File

@ -1,5 +1,5 @@
/*
* hook.h: internal entry points needed for synchronous hooks support
* virhook.h: internal entry points needed for synchronous hooks support
*
* Copyright (C) 2010 Red Hat, Inc.
* Copyright (C) 2010 Daniel Veillard