File diff r6178:fc8bd2bde93a → r6179:c0508e7aefec
src/debug.h
Show inline comments
 
/* $Id$ */
 

	
 
/** @file debug.h */
 

	
 
#ifndef DEBUG_H
 
#define DEBUG_H
 

	
 
/* Debugging messages policy:
 
 * These should be the severities used for direct DEBUG() calls
 
 * maximum debugging level should be 10 if really deep, deep
 
@@ -88,13 +90,13 @@ const char *GetDebugString(void);
 
#if defined(_MSC_VER) || defined(__MINGW32__)
 
	#define OTTD_PRINTF64 "I64"
 
#else
 
	#define OTTD_PRINTF64 "ll"
 
#endif
 

	
 
// Used for profiling
 
/* Used for profiling */
 
#define TIC() {\
 
	extern uint64 _rdtsc(void);\
 
	uint64 _xxx_ = _rdtsc();\
 
	static uint64 __sum__ = 0;\
 
	static uint32 __i__ = 0;