summaryrefslogtreecommitdiff
path: root/src/base/fast_alloc.cc
diff options
context:
space:
mode:
authorAli Saidi <saidi@eecs.umich.edu>2006-06-26 17:49:49 -0400
committerAli Saidi <saidi@eecs.umich.edu>2006-06-26 17:49:49 -0400
commitb1cfe01b5730af7d9f215466ebe108fc96dc0a27 (patch)
treed4015fd4bcf79959d6657be8512ba0e88ed4217b /src/base/fast_alloc.cc
parentd80acd37bdbadb95f7f116e130f98c528ba93abe (diff)
downloadgem5-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/base/fast_alloc.cc')
-rw-r--r--src/base/fast_alloc.cc2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/base/fast_alloc.cc b/src/base/fast_alloc.cc
index 455fb8ed7..610dff66c 100644
--- a/src/base/fast_alloc.cc
+++ b/src/base/fast_alloc.cc
@@ -180,13 +180,11 @@ FastAlloc::dump_oldest(int n)
// C interfaces to FastAlloc::dump_summary() and FastAlloc::dump_oldest().
// gdb seems to have trouble with calling C++ functions directly.
//
-extern "C" void
fast_alloc_summary()
{
FastAlloc::dump_summary();
}
-extern "C" void
fast_alloc_oldest(int n)
{
FastAlloc::dump_oldest(n);