summaryrefslogtreecommitdiff
path: root/cpu/pc_event.cc
diff options
context:
space:
mode:
authorRon Dreslinski <rdreslin@umich.edu>2005-04-28 17:24:04 -0400
committerRon Dreslinski <rdreslin@umich.edu>2005-04-28 17:24:04 -0400
commite07fee31cb7d3434d4ce5bb05a2a6b686f49fa50 (patch)
treea7e9eb13b11bb712024fb2e65264b24c99246afb /cpu/pc_event.cc
parent2bb9126a7acff9ca711ecf2584c65ac8ba452fdf (diff)
downloadgem5-e07fee31cb7d3434d4ce5bb05a2a6b686f49fa50.tar.xz
Clean up output for pc break events, and remove a unneeded break event.
cpu/pc_event.cc: Add a newline to the printout to clean up output kern/linux/linux_system.cc: Remove the die_if_kernel pc break event, it is being called when not the kernel and leads to unneeded printouts --HG-- extra : convert_revision : c359532db31c961074894cc6c44c8452592caca8
Diffstat (limited to 'cpu/pc_event.cc')
-rw-r--r--cpu/pc_event.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpu/pc_event.cc b/cpu/pc_event.cc
index 21eef677a..2c6bb2443 100644
--- a/cpu/pc_event.cc
+++ b/cpu/pc_event.cc
@@ -125,7 +125,7 @@ void
BreakPCEvent::process(ExecContext *xc)
{
StringWrap name(xc->cpu->name() + ".break_event");
- DPRINTFN("break event %s triggered", descr());
+ DPRINTFN("break event %s triggered\n", descr());
debug_break();
if (remove)
delete this;