This is the mail archive of the cluster-cvs@sourceware.org mailing list for the cluster.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

master - ccs: move debug.h to ccs/daemon


Gitweb:        http://git.fedorahosted.org/git/cluster.git?p=cluster.git;a=commitdiff;h=ae590e550cdc69a78ffff4ef9297d898c50d4e3b
Commit:        ae590e550cdc69a78ffff4ef9297d898c50d4e3b
Parent:        a8ccd202dbbdbd8d0aa1838c5b791ad0bc0530cd
Author:        Fabio M. Di Nitto <fdinitto@redhat.com>
AuthorDate:    Thu Aug 7 07:01:00 2008 +0200
Committer:     Fabio M. Di Nitto <fdinitto@redhat.com>
CommitterDate: Thu Aug 14 15:18:02 2008 +0200

ccs: move debug.h to ccs/daemon

ccsd is the only user for debug.h. No need to keep it in a generic
include dir.

Signed-off-by: Fabio M. Di Nitto <fdinitto@redhat.com>
---
 ccs/daemon/debug.h  |    9 +++++++++
 ccs/include/debug.h |    9 ---------
 2 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/ccs/daemon/debug.h b/ccs/daemon/debug.h
new file mode 100644
index 0000000..4ed365c
--- /dev/null
+++ b/ccs/daemon/debug.h
@@ -0,0 +1,9 @@
+#ifndef __DEBUG_DOT_H__
+#define __DEBUG_DOT_H__
+
+#define CCSENTER(x) log_printf(LOG_DEBUG, "Entering " x "\n")
+#define CCSEXIT(x) log_printf(LOG_DEBUG, "Exiting " x "\n")
+
+extern int debug;
+
+#endif /* __DEBUG_DOT_H__ */
diff --git a/ccs/include/debug.h b/ccs/include/debug.h
deleted file mode 100644
index 4ed365c..0000000
--- a/ccs/include/debug.h
+++ /dev/null
@@ -1,9 +0,0 @@
-#ifndef __DEBUG_DOT_H__
-#define __DEBUG_DOT_H__
-
-#define CCSENTER(x) log_printf(LOG_DEBUG, "Entering " x "\n")
-#define CCSEXIT(x) log_printf(LOG_DEBUG, "Exiting " x "\n")
-
-extern int debug;
-
-#endif /* __DEBUG_DOT_H__ */


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]