Revert "Should be a while loop in case of multiple simultaneous event triggers."

This reverts commit 9dcf001a0b.

For ehatever reason this is entirely broken, but I'm in the process of rewriting so just revert for now to get the working builds again.
This commit is contained in:
Chris Young 2014-11-22 14:18:00 +00:00
parent d9a63bb9e0
commit fe56795205

View File

@ -2743,9 +2743,9 @@ void ami_get_msg(void)
}
if(signal & schedulesig) {
while((timermsg = (struct TimerRequest *)GetMsg(msgport))) {
schedule_run();
if((timermsg = (struct TimerRequest *)GetMsg(msgport))) {
ReplyMsg((struct Message *)timermsg);
schedule_run();
}
}