/**CFile************************************************************************ FileName [datalimit.c] PackageName [util] Synopsis [Routine to obtain the maximum data size available to a program. The routine is based on "getrlimit". If the system does not have this function, the default value RLIMIT_DATA_DEFAULT is assumed. This function provides an informative value, it does not restrict the size of the program in any way.] Author [Fabio Somenzi ] Copyright [This file was created at the University of Colorado at Boulder. The University of Colorado at Boulder makes no warranty about the suitability of this software for any purpose. It is presented on an AS IS basis.] ******************************************************************************/ #include "util.h" static char rcsid[] UNUSED = "$Id: datalimit.c,v 1.4 2009-04-13 18:45:04 hhkim Exp $"; #ifdef HAVE_SYS_RESOURCE_H #ifdef HAVE_SYS_TIME_H == 1 #include #endif #include #endif /*---------------------------------------------------------------------------*/ /* Type declarations */ /*---------------------------------------------------------------------------*/ /*---------------------------------------------------------------------------*/ /* Structure declarations */ /*---------------------------------------------------------------------------*/ /*---------------------------------------------------------------------------*/ /* Macro declarations */ /*---------------------------------------------------------------------------*/ #ifndef RLIMIT_DATA_DEFAULT #define RLIMIT_DATA_DEFAULT 67108864 /* assume 64MB by default */ #endif /*---------------------------------------------------------------------------*/ /* Variable declarations */ /*---------------------------------------------------------------------------*/ /**AutomaticStart*************************************************************/ /*---------------------------------------------------------------------------*/ /* Static function prototypes */ /*---------------------------------------------------------------------------*/ /**AutomaticEnd***************************************************************/ /*---------------------------------------------------------------------------*/ /* Definition of exported functions */ /*---------------------------------------------------------------------------*/ /**Function******************************************************************** Synopsis [Function that computes the data limit of the process.] SideEffects [] ******************************************************************************/ long getSoftDataLimit(void) { /*#if HAVE_SYS_RESOURCE_H == 1 && HAVE_GETRLIMIT == 1 && defined(RLIMIT_DATA)*/ #ifdef HAVE_SYS_RESOURCE_H #ifdef HAVE_GETRLIMIT #ifdef RLIMIT_DATA struct rlimit rl; int result; result = getrlimit(RLIMIT_DATA, &rl); if (result != 0 || rl.rlim_cur == RLIM_INFINITY) return((long) RLIMIT_DATA_DEFAULT); else return((long) rl.rlim_cur); #endif #endif #else return((long) RLIMIT_DATA_DEFAULT); #endif } /* end of getSoftDataLimit */ /*---------------------------------------------------------------------------*/ /* Definition of internal functions */ /*---------------------------------------------------------------------------*/ /*---------------------------------------------------------------------------*/ /* Definition of static functions */ /*---------------------------------------------------------------------------*/