git-svn-id: https://pupnp.svn.sourceforge.net/svnroot/pupnp/trunk@87 119443c7-1b9e-41f8-b6fc-b9c35fce742c

This commit is contained in:
Oxy 2006-09-28 17:20:22 +00:00
parent 38a91fdaec
commit ae13c481a7

View File

@ -63,7 +63,7 @@ typedef enum priority {LOW_PRIORITY,
#define DEFAULT_IDLE_TIME 10 * 1000 //default idle time used by TPAttrInit #define DEFAULT_IDLE_TIME 10 * 1000 //default idle time used by TPAttrInit
#define DEFAULT_FREE_ROUTINE NULL //default free routine used TPJobInit #define DEFAULT_FREE_ROUTINE NULL //default free routine used TPJobInit
#define STATS 1 //always include stats because code change is minimal //#define STATS 1 //always include stats because code change is minimal
//Statistics //Statistics
@ -72,21 +72,21 @@ typedef enum priority {LOW_PRIORITY,
#endif #endif
#ifdef STATS #ifdef STATS
#define STATSONLY(x) x #define STATSONLY(x) x
#else #else
#define STATSONLY(x) #define STATSONLY(x)
#endif #endif
#ifdef _DEBUG #ifdef _DEBUG
#define DEBUG 1 #define DEBUG 1
#endif #endif
//DEBUGGING //DEBUGGING
#ifndef WIN32 #ifndef WIN32
#ifdef DEBUG #ifdef DEBUG
#define DBGONLY(x) x #define DBGONLY(x) x
#else #else
#define DBGONLY(x) #define DBGONLY(x)
#endif #endif
#endif #endif