Subversion Repositories shark

Compare Revisions

Ignore whitespace Rev 1019 → Rev 1020

/shark/trunk/kernel/signal.c
18,11 → 18,11
 
/**
------------
CVS : $Id: signal.c,v 1.14 2006-03-03 17:14:47 mauro Exp $
CVS : $Id: signal.c,v 1.15 2006-03-07 19:11:58 mauro Exp $
 
File: $File$
Revision: $Revision: 1.14 $
Last update: $Date: 2006-03-03 17:14:47 $
Revision: $Revision: 1.15 $
Last update: $Date: 2006-03-07 19:11:58 $
------------
 
This file contains:
1403,7 → 1403,7
int no = *(int *)n;
PID p;
 
kern_printf("(irq_fasthandler: no %d)",no);
//kern_printf("(irq_fasthandler: no %d)",no);
/* tracer stuff */
TRACER_LOGEVENT(FTrace_EVT_interrupt_start,(unsigned short int)no,0);
1442,7 → 1442,9
}
 
f = kern_fsave();
kern_printf("(handler_set: no %d pid %d)",no, pi);
 
//kern_printf("(handler_set: no %d pid %d)",no, pi);
 
if (int_table[no].isUsed == TRUE) {
kern_frestore(f);
errno = EUSED_INT_NO;
1471,7 → 1473,9
}
 
f = kern_fsave();
kern_printf("(handler_remove: no %d )",no);
 
//kern_printf("(handler_remove: no %d )",no);
 
if (int_table[no].isUsed == FALSE) {
kern_frestore(f);
errno = EUNUSED_INT_NO;