testsuite_performance.h (resource_counter): Don't use mallinfo at the moment.

2003-06-20  Benjamin Kosnik  <bkoz@redhat.com>

	* testsuite/testsuite_performance.h (resource_counter): Don't use
	mallinfo at the moment.

From-SVN: r68268
This commit is contained in:
Benjamin Kosnik 2003-06-20 15:26:23 +00:00 committed by Benjamin Kosnik
parent b5adda7307
commit f5a6463ed6
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2003-06-20 Benjamin Kosnik <bkoz@redhat.com>
* testsuite/testsuite_performance.h (resource_counter): Don't use
mallinfo at the moment.
2003-06-20 Matthias Klose <doko@debian.org>
* configure.host: Set try_cpu to target_cpu for existing

View File

@ -107,7 +107,7 @@ namespace __gnu_cxx_test
{
if (getrusage(who, &rusage_begin) != 0 )
memset(&rusage_begin, 0, sizeof(rusage_begin));
allocation_begin = mallinfo();
// allocation_begin = mallinfo();
}
void
@ -115,7 +115,7 @@ namespace __gnu_cxx_test
{
if (getrusage(who, &rusage_end) != 0 )
memset(&rusage_end, 0, sizeof(rusage_end));
allocation_end = mallinfo();
// allocation_end = mallinfo();
}
int