Move internals constants to private h file

This commit is contained in:
Daniel Zaoui 2017-05-09 11:02:16 +03:00
parent 76e5a8f268
commit 9fadbc00ad
2 changed files with 5 additions and 5 deletions

View File

@ -33,11 +33,6 @@
* @{
*/
#define SERVER_PATH ".edebug"
#define SERVER_NAME "efl_debug"
#define SERVER_MASTER_PORT 0
#define SERVER_SLAVE_PORT 1
typedef enum
{
EINA_DEBUG_OK,

View 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)