| 1 |
161 |
khays |
/* Increase stack size limit if possible.
|
| 2 |
|
|
Copyright (C) 2011 Free Software Foundation, Inc.
|
| 3 |
|
|
|
| 4 |
|
|
This file is part of the libiberty library. This library is free
|
| 5 |
|
|
software; you can redistribute it and/or modify it under the
|
| 6 |
|
|
terms of the GNU General Public License as published by the
|
| 7 |
|
|
Free Software Foundation; either version 2, or (at your option)
|
| 8 |
|
|
any later version.
|
| 9 |
|
|
|
| 10 |
|
|
This library is distributed in the hope that it will be useful,
|
| 11 |
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
| 12 |
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
| 13 |
|
|
GNU General Public License for more details.
|
| 14 |
|
|
|
| 15 |
|
|
You should have received a copy of the GNU General Public License
|
| 16 |
|
|
along with GNU CC; see the file COPYING. If not, write to
|
| 17 |
|
|
the Free Software Foundation, 51 Franklin Street - Fifth Floor,
|
| 18 |
|
|
Boston, MA 02110-1301, USA.
|
| 19 |
|
|
|
| 20 |
|
|
As a special exception, if you link this library with files
|
| 21 |
|
|
compiled with a GNU compiler to produce an executable, this does not cause
|
| 22 |
|
|
the resulting executable to be covered by the GNU General Public License.
|
| 23 |
|
|
This exception does not however invalidate any other reasons why
|
| 24 |
|
|
the executable file might be covered by the GNU General Public License. */
|
| 25 |
|
|
|
| 26 |
|
|
/*
|
| 27 |
|
|
|
| 28 |
|
|
@deftypefn Extension void stack_limit_increase (unsigned long @var{pref})
|
| 29 |
|
|
|
| 30 |
|
|
Attempt to increase stack size limit to @var{pref} bytes if possible.
|
| 31 |
|
|
|
| 32 |
|
|
@end deftypefn
|
| 33 |
|
|
|
| 34 |
|
|
*/
|
| 35 |
|
|
|
| 36 |
|
|
#include "config.h"
|
| 37 |
|
|
|
| 38 |
|
|
#ifdef HAVE_STDINT_H
|
| 39 |
|
|
#include <stdint.h>
|
| 40 |
|
|
#endif
|
| 41 |
|
|
#ifdef HAVE_SYS_RESOURCE_H
|
| 42 |
|
|
#include <sys/resource.h>
|
| 43 |
|
|
#endif
|
| 44 |
|
|
|
| 45 |
|
|
void
|
| 46 |
|
|
stack_limit_increase (unsigned long pref)
|
| 47 |
|
|
{
|
| 48 |
|
|
#if defined(HAVE_SETRLIMIT) && defined(HAVE_GETRLIMIT) \
|
| 49 |
|
|
&& defined(RLIMIT_STACK) && defined(RLIM_INFINITY)
|
| 50 |
|
|
struct rlimit rlim;
|
| 51 |
|
|
if (getrlimit (RLIMIT_STACK, &rlim) == 0
|
| 52 |
|
|
&& rlim.rlim_cur != RLIM_INFINITY
|
| 53 |
|
|
&& rlim.rlim_cur < pref
|
| 54 |
|
|
&& (rlim.rlim_max == RLIM_INFINITY || rlim.rlim_cur < rlim.rlim_max))
|
| 55 |
|
|
{
|
| 56 |
|
|
rlim.rlim_cur = pref;
|
| 57 |
|
|
if (rlim.rlim_max != RLIM_INFINITY && rlim.rlim_cur > rlim.rlim_max)
|
| 58 |
|
|
rlim.rlim_cur = rlim.rlim_max;
|
| 59 |
|
|
setrlimit (RLIMIT_STACK, &rlim);
|
| 60 |
|
|
}
|
| 61 |
|
|
#endif
|
| 62 |
|
|
}
|