1
0
Fork 0
forked from len0rd/rockbox

make debugf() do properly when SIMULATOR is defined, ignore the CRT_DISPLAY

and use the symbol we'll always have defined when running on host


git-svn-id: svn://svn.rockbox.org/rockbox/trunk@474 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Daniel Stenberg 2002-05-06 11:25:44 +00:00
parent 00f090ff1c
commit c84439aec3

View file

@ -25,7 +25,7 @@
char debugmembuf[100]; char debugmembuf[100];
char debugbuf[200]; char debugbuf[200];
#ifndef CRT_DISPLAY /* allow non archos platforms to display output */ #ifndef SIMULATOR /* allow non archos platforms to display output */
static int debug_tx_ready(void) static int debug_tx_ready(void)
{ {
@ -187,17 +187,15 @@ void debugf(char *fmt, ...)
#endif #endif
} }
#else #else /* SIMULATOR code coming up */
void debugf(char *fmt, ...) void debugf(char *fmt, ...)
{ {
#ifdef DEBUG
va_list ap; va_list ap;
va_start( ap, fmt ); va_start( ap, fmt );
vsnprintf( debugmembuf, sizeof(debugmembuf), fmt, ap ); vsnprintf( debugmembuf, sizeof(debugmembuf), fmt, ap );
va_end( ap ); va_end( ap );
printf( debugmembuf ); printf( "%s", debugmembuf );
#endif
} }
#endif #endif