This is the mail archive of the libstdc++@gcc.gnu.org mailing list for the libstdc++ project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

PATCH (libstdc++-v3): Port testsuite/testsuite_performance.h


No comment (other than "as obvious", tested in context).

	* testsuite/testsuite_performance.h: Portability.

Index: libstdc++-v3/testsuite/testsuite_performance.h
===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/testsuite/testsuite_performance.h,v
retrieving revision 1.2
diff -c -r1.2 testsuite_performance.h
*** libstdc++-v3/testsuite/testsuite_performance.h	20 Jun 2003 15:26:23 -0000	1.2
--- libstdc++-v3/testsuite/testsuite_performance.h	24 Jun 2003 06:35:55 -0000
***************
*** 33,39 ****
--- 33,43 ----
  
  #include <sys/times.h>
  #include <sys/resource.h>
+ #ifdef __FreeBSD__
+ #include <stdlib.h>
+ #else
  #include <malloc.h>
+ #endif
  #include <string>
  #include <fstream>
  #include <iomanip>
***************
*** 80,85 ****
--- 84,94 ----
      system_time() const
      { return tms_end.tms_stime - tms_begin.tms_stime; }
    };
+ 
+ #ifdef __FreeBSD__
+   struct mallinfo { int arena; };
+   int mallinfo (void) { return 0; }
+ #endif
  
    class resource_counter
    {


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]