mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-22 00:59:55 +08:00
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:
parent
b5adda7307
commit
f5a6463ed6
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user