Move internals constants to private h file
authorDaniel Zaoui <daniel.zaoui@yahoo.com>
Tue, 9 May 2017 08:02:16 +0000 (11:02 +0300)
committerDaniel Zaoui <daniel.zaoui@yahoo.com>
Mon, 5 Jun 2017 05:55:36 +0000 (08:55 +0300)
src/lib/eina/eina_debug.h
src/lib/eina/eina_debug_private.h

index 0362d28..3d52bbf 100644 (file)
  * @{
  */
 
-#define SERVER_PATH ".edebug"
-#define SERVER_NAME "efl_debug"
-#define SERVER_MASTER_PORT 0
-#define SERVER_SLAVE_PORT 1
-
 typedef enum
 {
    EINA_DEBUG_OK,
index d9dc9e0..b54f7d6 100644 (file)
@@ -5,6 +5,11 @@
 # include "eina_lock.h"
 # include "eina_thread.h"
 
+#define SERVER_PATH ".edebug"
+#define SERVER_NAME "efl_debug"
+#define SERVER_MASTER_PORT 0
+#define SERVER_SLAVE_PORT 1
+
 #ifdef DEBUGON
 # define e_debug(fmt, args...) fprintf(stderr, "%d:"__FILE__":%s/%d : " fmt "\n", getpid(), __FUNCTION__, __LINE__, ##args)
 # define e_debug_begin(fmt, args...) fprintf(stderr, "%d:"__FILE__":%s/%d : " fmt "", getpid(), __FUNCTION__, __LINE__, ##args)