Ignore PROC_EVENTs
This commit is contained in:
parent
eae250dea4
commit
0c8dbc55c9
2 changed files with 3 additions and 0 deletions
|
@ -391,6 +391,8 @@ void main( int argc, char **argv )
|
|||
}
|
||||
}
|
||||
break;
|
||||
case PROC_EVENT:
|
||||
break;
|
||||
default:
|
||||
panic( "lance", "illegal message", m.m_type);
|
||||
}
|
||||
|
|
|
@ -143,6 +143,7 @@ PUBLIC void main(void)
|
|||
case HARD_INT: do_printer_output(); break;
|
||||
case SYS_SIG: do_signal(&pr_mess); break;
|
||||
case DEV_PING: notify(pr_mess.m_source); break;
|
||||
case PROC_EVENT: break;
|
||||
default:
|
||||
reply(TASK_REPLY, pr_mess.m_source, pr_mess.IO_ENDPT, EINVAL);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue