]> xenbits.xensource.com Git - libvirt.git/commitdiff
Misc syntax-check fixes
authorDaniel P. Berrange <berrange@redhat.com>
Wed, 16 Sep 2009 16:26:27 +0000 (17:26 +0100)
committerDaniel P. Berrange <berrange@redhat.com>
Mon, 21 Sep 2009 13:41:47 +0000 (14:41 +0100)
.x-sc_avoid_write
.x-sc_prohibit_VIR_ERR_NO_MEMORY
.x-sc_prohibit_nonreentrant
.x-sc_require_config_h
.x-sc_require_config_h_first
examples/dominfo/Makefile.am
examples/domsuspend/Makefile.am
po/POTFILES.in
python/libvirt-override.py

index 8ed87c569b9a1f31e8453b99d19c7db9057ed87d..e0f94d60273109ac6de8df11702c0d968178dcbf 100644 (file)
@@ -1,5 +1,4 @@
-^src/util\.c$
-^src/xend_internal\.c$
-^src/util-lib\.c$
-^qemud/qemud.c$
+^src/util/util\.c$
+^src/xen/xend_internal\.c$
+^daemon/libvirtd.c$
 ^gnulib/
index 88b0c98608ecb523922dc523091ca97acdd104e0..fbefbebebfda4f07f8b6cce9c5ebae2f7fd702c2 100644 (file)
@@ -4,5 +4,5 @@ docs/html/libvirt-virterror.html
 docs/libvirt-api.xml
 docs/libvirt-refs.xml
 include/libvirt/virterror.h
-qemud/dispatch.c
-src/virterror.c
+daemon/dispatch.c
+src/util/virterror.c
index cc323b073ec650ea797df92e47c22a62415b5377..ac783c06b81912f029a92d62af5bb1186c07d54c 100644 (file)
@@ -4,7 +4,7 @@ ChangeLog
 ^Makefile*
 ^docs/
 ^tests/
-^src/virsh\.c
-^src/console\.c
-^src/virterror\.c
+^tools/virsh\.c
+^tools/console\.c
+^src/util/virterror\.c
 ^build-aux/
index 65b0d81eaaae2f195ed7d7396af4f7ff818fc376..e1f6e10c30e04e79c2609fa09b7fcab9dd5a8be3 100644 (file)
@@ -1,6 +1,5 @@
-^docs/examples/info1\.c$
-^docs/examples/suspend\.c$
+^examples/
 ^gnulib/lib/dummy\.c$
 ^gnulib/tests/dummy\.c$
-^qemud/remote_protocol\.c$
+^daemon/remote_protocol\.c$
 ^ChangeLog$
index 58a88789f91259aef9ab6ac9181f4297c14fd2e3..0390cd4584188e8707c9bfeeb1811cc89cd3b22c 100644 (file)
@@ -1,2 +1 @@
-^docs/examples/info1\.c$
-^docs/examples/suspend\.c$
+^examples/
index 5795cb54a1ec87dac5f37d922024241406a166bf..a1694b8858e51236db937964f3abd8ba3c7f103e 100644 (file)
@@ -7,4 +7,3 @@ noinst_PROGRAMS=info1
 info1_SOURCES=info1.c
 info1_LDFLAGS=
 info1_LDADD= $(LDADDS)
-
index 059c5b512dc21ed291bca1705396b2504b50ac38..41e9fdbbbbe4d4482c70e713e8113c78e4ffd97b 100644 (file)
@@ -7,4 +7,3 @@ noinst_PROGRAMS=suspend
 suspend_SOURCES=suspend.c
 suspend_LDFLAGS=
 suspend_LDADD= $(LDADDS)
-
index a3039973d417bc2dd69d6d7a98c7f4839fc0b6ad..67769c8da859911b27b0cb42a6053794b92bf6fa 100644 (file)
@@ -1,62 +1,62 @@
-qemud/dispatch.c
-qemud/qemud.c
-qemud/remote.c
-src/bridge.c
-src/conf.c
-src/console.c
+daemon/dispatch.c
+daemon/libvirtd.c
+daemon/remote.c
+src/conf/domain_conf.c
+src/conf/interface_conf.c
+src/conf/network_conf.c
+src/conf/node_device_conf.c
+src/conf/secret_conf.c
+src/conf/storage_conf.c
+src/conf/storage_encryption_conf.c
 src/datatypes.c
-src/domain_conf.c
-src/interface_conf.c
-src/interface_driver.c
-src/iptables.c
+src/interface/netcf_driver.c
 src/libvirt.c
-src/logging.c
-src/lxc_container.c
-src/lxc_controller.c
-src/lxc_driver.c
-src/network_conf.c
-src/network_driver.c
-src/node_device.c
-src/node_device_conf.c
-src/node_device_hal_linux.c
+src/lxc/lxc_container.c
+src/lxc/lxc_controller.c
+src/lxc/lxc_driver.c
+src/network/bridge_driver.c
+src/node_device/node_device_driver.c
+src/node_device/node_device_hal_linux.c
 src/nodeinfo.c
 src/opennebula/one_conf.c
 src/opennebula/one_driver.c
-src/openvz_conf.c
-src/openvz_driver.c
-src/pci.c
+src/openvz/openvz_conf.c
+src/openvz/openvz_driver.c
 src/phyp/phyp_driver.c
-src/proxy_internal.c
-src/qemu_conf.c
-src/qemu_driver.c
-src/remote_internal.c
-src/secret_conf.c
-src/secret_driver.c
-src/security.c
-src/security_selinux.c
-src/storage_backend.c
-src/storage_backend_disk.c
-src/storage_backend_fs.c
-src/storage_backend_iscsi.c
-src/storage_backend_logical.c
-src/storage_backend_scsi.c
-src/storage_backend_mpath.c
-src/storage_conf.c
-src/storage_driver.c
-src/storage_encryption_conf.c
-src/test.c
-src/uml_conf.c
-src/uml_driver.c
-src/util.c
-src/uuid.c
+src/qemu/qemu_conf.c
+src/qemu/qemu_driver.c
+src/remote/remote_driver.c
+src/secret/secret_driver.c
+src/security/security_driver.c
+src/security/security_selinux.c
+src/storage/storage_backend.c
+src/storage/storage_backend_disk.c
+src/storage/storage_backend_fs.c
+src/storage/storage_backend_iscsi.c
+src/storage/storage_backend_logical.c
+src/storage/storage_backend_mpath.c
+src/storage/storage_backend_scsi.c
+src/storage/storage_driver.c
+src/test/test_driver.c
+src/uml/uml_conf.c
+src/uml/uml_driver.c
+src/util/bridge.c
+src/util/conf.c
+src/util/iptables.c
+src/util/logging.c
+src/util/pci.c
+src/util/util.c
+src/util/uuid.c
+src/util/virterror.c
+src/util/xml.c
 src/vbox/vbox_driver.c
 src/vbox/vbox_tmpl.c
-src/virsh.c
-src/virterror.c
-src/xen_inotify.c
-src/xen_internal.c
-src/xen_unified.c
-src/xend_internal.c
-src/xm_internal.c
-src/xml.c
-src/xs_internal.c
+src/xen/proxy_internal.c
+src/xen/xend_internal.c
+src/xen/xen_driver.c
+src/xen/xen_hypervisor.c
+src/xen/xen_inotify.c
+src/xen/xm_internal.c
+src/xen/xs_internal.c
+tools/console.c
+tools/virsh.c
index 92c6e03bbea9beb90fe94d3410cc547d6d5a5302..de1af2d9eff59d90a379ea3d455225904a74c884 100644 (file)
@@ -140,5 +140,3 @@ def eventInvokeTimeoutCallback (timer, callback, opaque):
     Invoke the Event Impl Timeout Callback in C
     """
     libvirtmod.virEventInvokeTimeoutCallback(timer, callback, opaque);
-
-