/*MT* MediaTomb - http://www.mediatomb.cc/ memory.h - this file is part of MediaTomb. Copyright (C) 2005 Gena Batyan , Sergey 'Jin' Bostandzhyan Copyright (C) 2006-2007 Gena Batyan , Sergey 'Jin' Bostandzhyan , Leonhard Wimmer MediaTomb is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2 as published by the Free Software Foundation. MediaTomb is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License version 2 along with MediaTomb; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. $Id: memory.h 1124 2007-02-17 21:49:15Z lww $ */ /// \file memory.h #ifndef __MEMORY_H__ #define __MEMORY_H__ #include "autoconfig.h" #include #if (!defined(HAVE_MALLOC)) || (!defined(HAVE_REALLOC)) #include #else #define HAVE_CALLOC #endif #ifndef HAVE_MALLOC #undef malloc #define malloc rpl_malloc #endif #ifndef HAVE_REALLOC #undef realloc #define realloc rpl_realloc #endif #ifndef HAVE_CALLOC #undef calloc #define calloc rpl_calloc #endif #ifndef MEMPROF #ifdef LOG_TOMBDEBUG void *MALLOC(size_t size); void *REALLOC(void *ptr, size_t size); #else #define MALLOC malloc #define REALLOC realloc #endif #define CALLOC calloc #define FREE free #else void *MALLOC(size_t size); void *CALLOC(size_t nmemb, size_t size); void *REALLOC(void *ptr, size_t size); void FREE(void *ptr); #endif #ifndef HAVE_MALLOC void *rpl_malloc(size_t size); #endif #ifndef HAVE_REALLOC void *rpl_realloc(void *p, size_t size); #endif #ifndef HAVE_CALLOC void *rpl_calloc(size_t n, size_t s); #endif #endif // __MEMORY_H__