Hi,
Do you think the following program in function void EventQueue::insert(Event
*event) is a bug?
if (event->when() <= curr->when() && (event->when() < curr->when() ||
event->priority() <= curr->priority()))
break;
I think it should be the following:
if (event->when() < curr->when() || (event->when() = curr->when() &&
event->priority() <= curr->priority()))
break;
_______________________________________________
m5-users mailing list
[email protected]
http://m5sim.org/cgi-bin/mailman/listinfo/m5-users