]> gcc.gnu.org Git - gcc.git/commitdiff
testsuite_performance.h (resource_counter): Don't use mallinfo at the moment.
authorBenjamin Kosnik <bkoz@redhat.com>
Fri, 20 Jun 2003 15:26:23 +0000 (15:26 +0000)
committerBenjamin Kosnik <bkoz@gcc.gnu.org>
Fri, 20 Jun 2003 15:26:23 +0000 (15:26 +0000)
2003-06-20  Benjamin Kosnik  <bkoz@redhat.com>

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

From-SVN: r68268

libstdc++-v3/ChangeLog
libstdc++-v3/testsuite/testsuite_performance.h

index 9aa551aebb7a49a2d9c7aa001aaa2796c4ba65b9..ada09bf1a8c0ab3205bb0871da11fd955f34c549 100644 (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
index b9b76cd031ee0f8a43f54964776c30dd1795078c..598571b07ea7c321dbcf1f37518cda03b0c30283 100644 (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
This page took 0.066923 seconds and 5 git commands to generate.