[BACK]Return to dn_debug.c CVS log [TXT][DIR] Up to [Development] / linux-2.4-xfs / arch / m68k / apollo

File: [Development] / linux-2.4-xfs / arch / m68k / apollo / dn_debug.c (download)

Revision 1.1, Wed Dec 31 00:54:49 2003 UTC (13 years, 10 months ago) by cattelan
Branch: MAIN
CVS Tags: HEAD

Initial Import 2.4.24pre2

#define DN_DEBUG_BUFFER_BASE 0x82800000
#define DN_DEBUG_BUFFER_SIZE 8*1024*1024

static char *current_dbg_ptr=DN_DEBUG_BUFFER_BASE;

int dn_deb_printf(const char *fmt, ...) {

	va_list args;
	int i;

	if(current_dbg_ptr<(DN_DEBUG_BUFFER_BASE + DN_DEBUG_BUFFER_SIZE)) {
		va_start(args,fmt);
		i=vsprintf(current_dbg_ptr,fmt,args);
		va_end(args);
		current_dbg_ptr+=i;
	
		return i;
	}
	else 
		return 0;
}