plan 9 kernel history: overview | file list | diff list

1999/0820/port/devcons.c (diff list | history)

1999/0728/sys/src/9/port/devcons.c:156,1611999/0820/sys/src/9/port/devcons.c:156,178 (short | long | prev | next)
1990/0227    
	return n; 
} 
 
1999/0820    
int 
iprint(char *fmt, ...) 
{ 
	int n, s; 
	va_list arg; 
	char buf[PRINTSIZE]; 
 
	s = splhi(); 
	va_start(arg, fmt); 
	n = doprint(buf, buf+sizeof(buf), fmt, arg) - buf; 
	va_end(arg); 
	serialputs(buf, n); 
	splx(s); 
 
	return n; 
} 
 
1990/0227    
void 
panic(char *fmt, ...) 
{ 
1999/0728/sys/src/9/port/devcons.c:243,2481999/0820/sys/src/9/port/devcons.c:260,268
1992/0411    
		case 'd': 
1997/0327    
			if(consdebug != nil) 
				consdebug(); 
1999/0820    
			return; 
		case 'D': 
			consdebug = rdb; 
1992/0411    
			return; 
1991/0607    
		case 'p': 
1998/0808    
			x = spllo(); 


source code copyright © 1990-2005 Lucent Technologies; see license
Plan 9 distribution
comments to russ cox (rsc@swtch.com)