33,34c33
< #include <assert.h>
<
---
> #include <cassert>
39d37
< #include "cpu/smt.hh"
41,42d38
<
< #include "sim/eventq.hh"
43a40
> #include "cpu/smt.hh"
44a42
> #include "sim/eventq.hh"
206c204
< EventQueue::dump()
---
> EventQueue::dump() const
238d235
< #if TRACING_ON
253d249
< #endif
256c252
< Event::dump()
---
> Event::dump() const
258c254
< cprintf("Event (%s)\n", description());
---
> cprintf("Event %s (%s)\n", name(), description());
260,261c256,257
< #if TRACING_ON
< cprintf("Created: %d\n", when_created);
---
> #ifdef EVENTQ_DEBUG
> cprintf("Created: %d\n", whenCreated);
264,265c260,261
< #if TRACING_ON
< cprintf("Scheduled at %d\n", when_scheduled);
---
> #ifdef EVENTQ_DEBUG
> cprintf("Scheduled at %d\n", whenScheduled);
268,269c264
< }
< else {
---
> } else {