diff options
author | Ali Saidi <saidi@eecs.umich.edu> | 2006-06-26 17:49:49 -0400 |
---|---|---|
committer | Ali Saidi <saidi@eecs.umich.edu> | 2006-06-26 17:49:49 -0400 |
commit | b1cfe01b5730af7d9f215466ebe108fc96dc0a27 (patch) | |
tree | d4015fd4bcf79959d6657be8512ba0e88ed4217b /src/sim/stat_control.cc | |
parent | d80acd37bdbadb95f7f116e130f98c528ba93abe (diff) | |
download | gem5-b1cfe01b5730af7d9f215466ebe108fc96dc0a27.tar.xz |
remove extern "C" from the functions we all from gdb. This isn't requried and trips up GDB sometimes when i thinks the extern
name should be mangled, but it isn't
--HG--
extra : convert_revision : 62e2a1989e8fd3d73958d3a3e2d00e378488e642
Diffstat (limited to 'src/sim/stat_control.cc')
-rw-r--r-- | src/sim/stat_control.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/sim/stat_control.cc b/src/sim/stat_control.cc index f7fc03d74..041830ab7 100644 --- a/src/sim/stat_control.cc +++ b/src/sim/stat_control.cc @@ -221,8 +221,7 @@ SetupEvent(int flags, Tick when, Tick repeat) /* namespace Stats */ } -extern "C" void -debugDumpStats() +void debugDumpStats() { Stats::DumpNow(); } |