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

1990/08141/port/sysfile.c (diff list | history)

1990/0703/sys/src/9/port/sysfile.c:44,531990/08141/sys/src/9/port/sysfile.c:44,53 (short | long | prev | next)
1990/0227    
int 
openmode(ulong o) 
{ 
	if(o >= (OTRUNC|OEXEC)) 
1990/08141    
	if(o >= (OTRUNC|OCEXEC|ORCLOSE|OEXEC)) 
1990/0227    
    Err: 
		error(0, Ebadarg); 
	o &= ~OTRUNC; 
1990/08141    
	o &= ~(OTRUNC|OCEXEC|ORCLOSE); 
1990/0227    
	if(o > OEXEC) 
		goto Err; 
	if(o == OEXEC) 


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