diff options
author | Benjamin Kosnik <bkoz@redhat.com> | 2003-06-20 15:26:23 +0000 |
---|---|---|
committer | Benjamin Kosnik <bkoz@gcc.gnu.org> | 2003-06-20 15:26:23 +0000 |
commit | f5a6463ed684f0d63e6260d8b9705e696845a0aa (patch) | |
tree | 2723c3504ca94c831eff341c54f3394c4b41e1f7 | |
parent | b5adda7307d2e14decc45803c3f4f3dcce16d713 (diff) | |
download | gcc-f5a6463ed684f0d63e6260d8b9705e696845a0aa.zip gcc-f5a6463ed684f0d63e6260d8b9705e696845a0aa.tar.gz gcc-f5a6463ed684f0d63e6260d8b9705e696845a0aa.tar.bz2 |
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
-rw-r--r-- | libstdc++-v3/ChangeLog | 5 | ||||
-rw-r--r-- | libstdc++-v3/testsuite/testsuite_performance.h | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 9aa551a..ada09bf 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -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 diff --git a/libstdc++-v3/testsuite/testsuite_performance.h b/libstdc++-v3/testsuite/testsuite_performance.h index b9b76cd..598571b 100644 --- a/libstdc++-v3/testsuite/testsuite_performance.h +++ b/libstdc++-v3/testsuite/testsuite_performance.h @@ -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 |