X-Git-Url: http://git.salome-platform.org/gitweb/?p=modules%2Fsmesh.git;a=blobdiff_plain;f=src%2FSMESH%2Fmemoire.h;h=11ac073ae1c995be802cb93c38c1945be58bef43;hp=c742544080564135a6155349c2bf9cd2be527851;hb=HEAD;hpb=56aba9305e03615d8de324d4839a329685a4e66d diff --git a/src/SMESH/memoire.h b/src/SMESH/memoire.h index c74254408..a1091b213 100644 --- a/src/SMESH/memoire.h +++ b/src/SMESH/memoire.h @@ -1,4 +1,4 @@ -// Copyright (C) 2010-2016 CEA/DEN, EDF R&D, OPEN CASCADE +// Copyright (C) 2010-2024 CEA, EDF, OPEN CASCADE // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public @@ -20,14 +20,18 @@ #ifndef _MEMOIRE_H_ #define _MEMOIRE_H_ +#ifdef __APPLE__ +#include +#else #include +#endif #include void memostat(const char* f, int l); void memostat(const char* f, int l) { -#ifdef WIN32 +#if defined WIN32 || defined __APPLE__ //rnv: TODO: find alternative of the malloc_stats() on windows platform #else struct mallinfo mem = mallinfo(); @@ -39,7 +43,7 @@ void memostat(const char* f, int l) } #if defined(_DEBUG_) || defined(_DEBUG) -#define MEMOSTAT memostat( __FILE__, __LINE__ ) +#define MEMOSTAT //memostat( __FILE__, __LINE__ ) #else #define MEMOSTAT #endif