X-Git-Url: http://git.salome-platform.org/gitweb/?p=modules%2Fsmesh.git;a=blobdiff_plain;f=src%2FSMESH%2Fmemoire.h;h=4f51c241d4b22b9fe55223e93fbd8be9e635214d;hp=51db0552ef42b7f892bb55c61ec28c2c4f44b569;hb=6d32f944a0a115b6419184c50b57bf7c4eef5786;hpb=c98d9fcd7f02c1f1f5c24dd3e709ed75228d66c4 diff --git a/src/SMESH/memoire.h b/src/SMESH/memoire.h index 51db0552e..4f51c241d 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-2019 CEA/DEN, EDF R&D, 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(); @@ -38,6 +42,10 @@ void memostat(const char* f, int l) #endif } -#define MEMOSTAT memostat( __FILE__, __LINE__ ) +#if defined(_DEBUG_) || defined(_DEBUG) +#define MEMOSTAT //memostat( __FILE__, __LINE__ ) +#else +#define MEMOSTAT +#endif #endif