PATCH (libstdc++-v3): Port testsuite/testsuite_performance.h
Loren James Rittle
rittle@latour.rsch.comm.mot.com
Tue Jun 24 07:14:00 GMT 2003
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
{
More information about the Libstdc++
mailing list