commit 83d4d6681823d5c61d8153070eeb9cbdbf89bbd9 from: Florian Westphal date: Sat Dec 02 13:02:07 2006 UTC make LogDebug() 'static inline' if DEBUG is not defined [from HEAD] commit - 2434e86e14ca8ea0067358e83089dcb75a655b07 commit + 83d4d6681823d5c61d8153070eeb9cbdbf89bbd9 blob - af8bcc60d652cae7acbb02fa13f0bbf54cdff638 blob + d46f5d1bd95a8514907a3befe23d51b9a35ff2b1 --- src/ngircd/log.c +++ src/ngircd/log.c @@ -14,7 +14,7 @@ #include "portab.h" -static char UNUSED id[] = "$Id: log.c,v 1.61 2006/07/23 23:23:45 alex Exp $"; +static char UNUSED id[] = "$Id: log.c,v 1.61.2.1 2006/12/02 13:02:07 fw Exp $"; #include "imp.h" #include @@ -166,25 +166,21 @@ Log_Exit( void ) * Log function for debug messages. * This function is only functional when the program is compiled with debug * code enabled; otherwise it is an empty function which the compiler will - * hopefully mangle down to "nothing". Therefore you should use LogDebug(...) - * in favor to Log(LOG_DEBUG, ...). + * hopefully mangle down to "nothing" (see log.h). Therefore you should use + * LogDebug(...) in favor to Log(LOG_DEBUG, ...). * @param Format Format string like printf(). * @param ... Further arguments. */ +#ifdef DEBUG # ifdef PROTOTYPES GLOBAL void -#ifdef DEBUG LogDebug( const char *Format, ... ) -#else -LogDebug( UNUSED const char *Format, ... ) -#endif /* DEBUG */ # else GLOBAL void LogDebug( Format, va_alist ) const char *Format; va_dcl # endif /* PROTOTYPES */ -#ifdef DEBUG { char msg[MAX_LOG_MSG_LEN]; va_list ap; @@ -199,14 +195,9 @@ va_dcl va_end( ap ); Log(LOG_DEBUG, "%s", msg); } -#else -{ - /* Do nothing. - * The compiler should optimize this out, please ;-) */ -} #endif /* DEBUG */ - + /** * Logging function of ngIRCd. * This function logs messages to the console and/or syslog, whichever is blob - 00a8a0f7276d62f252e04fe126c4d35b4e0d9652 blob + c0139acb456b11cc46c1aff56f3e13542f02b2d7 --- src/ngircd/log.h +++ src/ngircd/log.h @@ -8,7 +8,7 @@ * (at your option) any later version. * Please read the file COPYING, README and AUTHORS for more information. * - * $Id: log.h,v 1.19 2006/02/08 17:33:28 fw Exp $ + * $Id: log.h,v 1.19.2.1 2006/12/02 13:02:07 fw Exp $ * * Logging functions (header) */ @@ -39,8 +39,14 @@ GLOBAL void Log_Init PARAMS(( bool Daemon_Mode )); GLOBAL void Log_Exit PARAMS(( void )); GLOBAL void Log PARAMS(( int Level, const char *Format, ... )); + +#ifdef DEBUG GLOBAL void LogDebug PARAMS(( const char *Format, ... )); +#else +static inline void LogDebug PARAMS(( UNUSED const char *Format, ... )){/* Do nothing. The compiler should optimize this out, please ;-) */} +#endif + GLOBAL void Log_Init_Resolver PARAMS(( void )); GLOBAL void Log_Exit_Resolver PARAMS(( void ));