Searched hist:5502 (Results 1 - 2 of 2) sorted by relevance

/gem5/src/sim/
H A Deventq.ccdiff 5502:f0f8a3ee5aad Fri Jul 11 11:38:00 EDT 2008 Nathan Binkert <nate@binkert.org> eventq: new eventq data structure. The new data structure is singly
linked list sorted by time and priority. For things of the same time
and priority, a second, circularly linked list maintains the data
structure. Events of the same time and priority are now inserted in
FIFO order instead of LIFO order. This dramatically improves the
performance of systems that schedule multiple events at the same time.

The FIFO order version is not preferred to LIFO (because it may cause
people to rely on it), but I'm going to commit it anyway and
immediately commit the preferred LIFO version on top.
H A Deventq.hhdiff 5502:f0f8a3ee5aad Fri Jul 11 11:38:00 EDT 2008 Nathan Binkert <nate@binkert.org> eventq: new eventq data structure. The new data structure is singly
linked list sorted by time and priority. For things of the same time
and priority, a second, circularly linked list maintains the data
structure. Events of the same time and priority are now inserted in
FIFO order instead of LIFO order. This dramatically improves the
performance of systems that schedule multiple events at the same time.

The FIFO order version is not preferred to LIFO (because it may cause
people to rely on it), but I'm going to commit it anyway and
immediately commit the preferred LIFO version on top.

Completed in 30 milliseconds