Move DEBUG macros to central location.

This commit is contained in:
Cole Robinson 2008-10-06 19:53:06 +00:00
parent 8206b421d6
commit e2a43cdb87
15 changed files with 11 additions and 45 deletions

View File

@ -1,3 +1,11 @@
Mon Oct 6 15:47:00 EST 2008 Cole Robinson <crobinso@redhat.com>
* qemud/remote.c src/hash.c src/internal.h src/lxc_conf.c
src/lxc_container.c src/lxc_controller.c src/lxc_driver.c
src/remote_internal.c src/storage_backend_disk.c src/veth.c
src/xen_internal.c src/xen_unified.c src/xend_internal.c:
Move DEBUG and DEBUG0 macros to central location.
Mon Oct 6 15:32:00 EST 2008 Cole Robinson <crobinso@redhat.com> Mon Oct 6 15:32:00 EST 2008 Cole Robinson <crobinso@redhat.com>
* src/qemu_conf.c: Fix possible segfault if starting a qemu guest with * src/qemu_conf.c: Fix possible segfault if starting a qemu guest with

View File

@ -52,8 +52,6 @@
#include "qemud.h" #include "qemud.h"
#include "memory.h" #include "memory.h"
#define DEBUG 0
#define REMOTE_DEBUG(fmt,...) qemudDebug("REMOTE: " fmt, __VA_ARGS__) #define REMOTE_DEBUG(fmt,...) qemudDebug("REMOTE: " fmt, __VA_ARGS__)
static void remoteDispatchError (struct qemud_client *client, static void remoteDispatchError (struct qemud_client *client,
@ -427,10 +425,6 @@ remoteDispatchOpen (struct qemud_server *server ATTRIBUTE_UNUSED,
name = args->name ? *args->name : NULL; name = args->name ? *args->name : NULL;
#if DEBUG
fprintf (stderr, "remoteDispatchOpen: name = %s\n", name);
#endif
/* If this connection arrived on a readonly socket, force /* If this connection arrived on a readonly socket, force
* the connection to be readonly. * the connection to be readonly.
*/ */

View File

@ -29,9 +29,6 @@
#define MAX_HASH_LEN 8 #define MAX_HASH_LEN 8
#define DEBUG(fmt,...) VIR_DEBUG(__FILE__, fmt, __VA_ARGS__)
#define DEBUG0(msg) VIR_DEBUG(__FILE__, "%s", msg)
/* #define DEBUG_GROW */ /* #define DEBUG_GROW */
/* /*

View File

@ -85,6 +85,9 @@ extern int debugFlag;
do { } while (0) do { } while (0)
#endif /* !ENABLE_DEBUG */ #endif /* !ENABLE_DEBUG */
#define DEBUG(fmt,...) VIR_DEBUG(__FILE__, fmt, __VA_ARGS__)
#define DEBUG0(msg) VIR_DEBUG(__FILE__, "%s", msg)
/* C99 uses __func__. __FUNCTION__ is legacy. */ /* C99 uses __func__. __FUNCTION__ is legacy. */
#ifndef __GNUC__ #ifndef __GNUC__
#define __FUNCTION__ __func__ #define __FUNCTION__ __func__

View File

@ -76,9 +76,6 @@ static int virStateDriverTabCount = 0;
#endif #endif
static int initialized = 0; static int initialized = 0;
#define DEBUG(fmt,...) VIR_DEBUG(__FILE__, fmt, __VA_ARGS__)
#define DEBUG0(msg) VIR_DEBUG(__FILE__, "%s", msg)
#ifdef ENABLE_DEBUG #ifdef ENABLE_DEBUG
int debugFlag = 0; int debugFlag = 0;
#endif #endif

View File

@ -29,10 +29,6 @@
#include "lxc_conf.h" #include "lxc_conf.h"
/* debug macros */
#define DEBUG(fmt,...) VIR_DEBUG(__FILE__, fmt, __VA_ARGS__)
#define DEBUG0(msg) VIR_DEBUG(__FILE__, "%s", msg)
/* Functions */ /* Functions */
void lxcError(virConnectPtr conn, virDomainPtr dom, int code, void lxcError(virConnectPtr conn, virDomainPtr dom, int code,
const char *fmt, ...) const char *fmt, ...)

View File

@ -46,9 +46,6 @@
#include "memory.h" #include "memory.h"
#include "veth.h" #include "veth.h"
#define DEBUG(fmt,...) VIR_DEBUG(__FILE__, fmt, __VA_ARGS__)
#define DEBUG0(msg) VIR_DEBUG(__FILE__, "%s", msg)
/* /*
* GLibc headers are behind the kernel, so we define these * GLibc headers are behind the kernel, so we define these
* constants if they're not present already. * constants if they're not present already.

View File

@ -44,9 +44,6 @@
#include "util.h" #include "util.h"
#include "cgroup.h" #include "cgroup.h"
#define DEBUG(fmt,...) VIR_DEBUG(__FILE__, fmt, __VA_ARGS__)
#define DEBUG0(msg) VIR_DEBUG(__FILE__, "%s", msg)
int debugFlag = 0; int debugFlag = 0;
struct cgroup_device_policy { struct cgroup_device_policy {

View File

@ -46,11 +46,6 @@
#include "cgroup.h" #include "cgroup.h"
/* debug macros */
#define DEBUG(fmt,...) VIR_DEBUG(__FILE__, fmt, __VA_ARGS__)
#define DEBUG0(msg) VIR_DEBUG(__FILE__, "%s", msg)
static int lxcStartup(void); static int lxcStartup(void);
static int lxcShutdown(void); static int lxcShutdown(void);
static lxc_driver_t *lxc_driver = NULL; static lxc_driver_t *lxc_driver = NULL;

View File

@ -74,9 +74,6 @@
#include "memory.h" #include "memory.h"
#include "util.h" #include "util.h"
#define DEBUG(fmt,...) VIR_DEBUG(__FILE__, fmt,__VA_ARGS__)
#define DEBUG0(msg) VIR_DEBUG(__FILE__, "%s", msg)
/* Per-connection private data. */ /* Per-connection private data. */
#define MAGIC 999 /* private_data->magic if OK */ #define MAGIC 999 /* private_data->magic if OK */
#define DEAD 998 /* private_data->magic if dead/closed */ #define DEAD 998 /* private_data->magic if dead/closed */

View File

@ -30,9 +30,6 @@
#include "util.h" #include "util.h"
#include "memory.h" #include "memory.h"
#define DEBUG(fmt,...) VIR_DEBUG(__FILE__, fmt, __VA_ARGS__)
#define DEBUG0(msg) VIR_DEBUG(__FILE__, "%s", msg)
enum { enum {
VIR_STORAGE_POOL_DISK_DOS = 0, VIR_STORAGE_POOL_DISK_DOS = 0,
VIR_STORAGE_POOL_DISK_DVH, VIR_STORAGE_POOL_DISK_DVH,

View File

@ -18,9 +18,6 @@
#include "memory.h" #include "memory.h"
#include "util.h" #include "util.h"
#define DEBUG(fmt,...) VIR_DEBUG(__FILE__, fmt, __VA_ARGS__)
#define DEBUG0(msg) VIR_DEBUG(__FILE__, "%s", msg)
/* Functions */ /* Functions */
/** /**
* getFreeVethName: * getFreeVethName:

View File

@ -48,9 +48,6 @@
#include "capabilities.h" #include "capabilities.h"
#include "memory.h" #include "memory.h"
#define DEBUG(fmt,...) VIR_DEBUG(__FILE__, fmt, __VA_ARGS__)
#define DEBUG0(msg) VIR_DEBUG(__FILE__, "%s", msg)
/* /*
* so far there is 2 versions of the structures usable for doing * so far there is 2 versions of the structures usable for doing
* hypervisor calls. * hypervisor calls.

View File

@ -40,9 +40,6 @@
#include "util.h" #include "util.h"
#include "memory.h" #include "memory.h"
#define DEBUG(fmt,...) VIR_DEBUG(__FILE__, fmt,__VA_ARGS__)
#define DEBUG0(msg) VIR_DEBUG(__FILE__, "%s", msg)
static int static int
xenUnifiedNodeGetInfo (virConnectPtr conn, virNodeInfoPtr info); xenUnifiedNodeGetInfo (virConnectPtr conn, virNodeInfoPtr info);
static int static int

View File

@ -46,9 +46,6 @@
/* required for cpumap_t */ /* required for cpumap_t */
#include <xen/dom0_ops.h> #include <xen/dom0_ops.h>
#define DEBUG(fmt,...) VIR_DEBUG(__FILE__, fmt,__VA_ARGS__)
#define DEBUG0(msg) VIR_DEBUG(__FILE__, "%s", msg)
#ifndef PROXY #ifndef PROXY
/* /*