 654722493b
			
		
	
	
		654722493b
		
	
	
	
	
		
			
			Cleaned up system call library. Added new alert() trap to replace notify() --- current notify will be removed and alert() will be called notify() later.
		
			
				
	
	
		
			17 lines
		
	
	
		
			438 B
		
	
	
	
		
			C
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			438 B
		
	
	
	
		
			C
		
	
	
		
			Executable File
		
	
	
	
	
| #include "syslib.h"
 | |
| 
 | |
| /*===========================================================================*
 | |
|  *                                sys_endksig				     *
 | |
|  *===========================================================================*/
 | |
| PUBLIC int sys_endksig(proc_nr)
 | |
| int proc_nr;				/* process number */
 | |
| {
 | |
|     message m;
 | |
|     int result;
 | |
| 
 | |
|     m.SIG_PROC = proc_nr;
 | |
|     result = _taskcall(SYSTASK, SYS_ENDKSIG, &m);
 | |
|     return(result);
 | |
| }
 | |
| 
 |