//# Memory.cc: Memory related information and utilities. //# Copyright (C) 1997,1999,2001 //# Associated Universities, Inc. Washington DC, USA. //# //# This library is free software; you can redistribute it and/or modify it //# under the terms of the GNU Library General Public License as published by //# the Free Software Foundation; either version 2 of the License, or (at your //# option) any later version. //# //# This library 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 Library General Public //# License for more details. //# //# You should have received a copy of the GNU Library General Public License //# along with this library; if not, write to the Free Software Foundation, //# Inc., 675 Massachusetts Ave, Cambridge, MA 02139, USA. //# //# Correspondence concerning AIPS++ should be addressed as follows: //# Internet email: aips2-request@nrao.edu. //# Postal address: AIPS++ Project Office //# National Radio Astronomy Observatory //# 520 Edgemont Road //# Charlottesville, VA 22903-2475 USA //# //# //# $Id$ //# MH 97/11/24 Stop attempt to use mallinfo from stdlib.h for HPUX #include #if defined(__hpux__) && !defined(AIPS_NO_LEA_MALLOC) #define _STRUCT_MALLINFO #endif #include #include #if defined(AIPS_NO_LEA_MALLOC) #if defined(AIPS_DARWIN) || defined(AIPS_CRAY_PGI) #include #include #if defined(AIPS_CRAY_PGI) #include #endif #else #include #endif #endif namespace casacore { //#Begin namespace casa size_t Memory::allocatedMemoryInBytes() { size_t total = 0; // rubbl modification: avoid use of deprecated mallinfo(); nothing uses this API return total; } size_t Memory::assignedMemoryInBytes() { size_t total = 0; // rubbl modification: avoid use of deprecated mallinfo(); nothing uses this API return total; } void Memory::releaseMemory() { #if defined(AIPS_RELEASEMEM) AIPS_RELEASEMEM; #elif !defined(AIPS_NO_LEA_MALLOC) malloc_trim(0); #endif } //setMemoryOptions uses compiler defines to set the // memory options if needed. It is intended to be // only called at the start of a program. Use // setMemoryOption to tweak the memory options elsewhere. void Memory::setMemoryOptions(){ #ifdef AIPS_MALLOC_M_MXFAST mallopt(M_MXFAST, AIPS_MALLOC_M_MXFAST); #endif #ifdef AIPS_MALLOC_M_NLBLKS mallopt(M_NLBLKS, AIPS_MALLOC_M_NLBLKS); #endif #ifdef AIPS_MALLOC_M_GRAIN mallopt(M_GRAIN, AIPS_MALLOC_M_GRAIN); #endif #ifdef AIPS_MALLOC_M_KEEP mallopt(M_KEEP, 1); #endif #ifdef AIPS_MALLOC_M_DEBUG mallopt(M_DEBUG, 1); #endif // Following options are from the SGI mallopt #ifdef AIPS_MALLOC_M_BLKSZ mallopt(M_BLKSZ, AIPS_MALLOC_M_BLKSZ); #endif #ifdef AIPS_MALLOC_M_MXCHK mallopt(M_MXCHK, AIPS_MALLOC_M_MXCHK); #endif #ifdef AIPS_MALLOC_M_FREEHD mallopt(M_FREEHD, 1); #endif #ifdef AIPS_MALLOC_M_CLRONFREE mallopt(M_CLRONFREE, AIPS_MALLOC_M_CLRONFREE); #endif } #if defined(AIPS_DARWIN) || defined(AIPS_CRAY_PGI) int Memory::setMemoryOption(int, int) { return 0; #else int Memory::setMemoryOption(int cmd, int value) { return(mallopt(cmd, value)); #endif } } //#End namespace casacore