Ignore PROC_EVENTs

This commit is contained in:
Ben Gras 2006-03-16 11:22:31 +00:00
parent eae250dea4
commit 0c8dbc55c9
2 changed files with 3 additions and 0 deletions

View file

@ -391,6 +391,8 @@ void main( int argc, char **argv )
}
}
break;
case PROC_EVENT:
break;
default:
panic( "lance", "illegal message", m.m_type);
}

View file

@ -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);
}