diff options
author | Mark Wielaard <mjw@redhat.com> | 2013-05-27 07:55:17 +0000 |
---|---|---|
committer | Mark Wielaard <mjw@redhat.com> | 2013-05-27 07:55:17 +0000 |
commit | 9d782e8df03087e435c045219a37311d9af174ea (patch) | |
tree | 59b3bfe6af55c820167f6f10e17575d18becbb85 /bfd/config.in | |
parent | 7bd153c85818e66bb2c408375e9de8794b7ac8fa (diff) | |
download | gdb-9d782e8df03087e435c045219a37311d9af174ea.zip gdb-9d782e8df03087e435c045219a37311d9af174ea.tar.gz gdb-9d782e8df03087e435c045219a37311d9af174ea.tar.bz2 |
bfd: Make bfd_cache_max_open depend on actual open file limit.
The current hard coded limit of open files in bfd/cache.c is 10. This
is pretty low these days. Binaries are often linked against much more
than 10 files (and sometimes against more than 100 shared libraries).
When debugging with GDB some files are opened and closed multiple
times because of this low limit. If possible make the BFD cache file
limit depend on the actual open file limit of the process so more BFD
files can be open at the same time.
* cache.c (BFD_CACHE_MAX_OPEN): Remove define.
(max_open_files): New static int initialized to zero.
(bfd_cache_max_open): New static function to set and return
max_open_files.
(bfd_cache_init): Use bfd_cache_max_open.
(bfd_open_file): Likewise.
* configure.in (AC_CHECK_HEADERS): Add sys/resource.h.
(AC_CHECK_FUNCS): Add getrlimit.
* configure: Regenerated.
* config.in: Likewise.
* sysdep.h: Check and include sys/resource.h for getrlimit.
Diffstat (limited to 'bfd/config.in')
-rw-r--r-- | bfd/config.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/bfd/config.in b/bfd/config.in index 2fc4897..65fb044 100644 --- a/bfd/config.in +++ b/bfd/config.in @@ -112,6 +112,9 @@ /* Define to 1 if you have the `getpagesize' function. */ #undef HAVE_GETPAGESIZE +/* Define to 1 if you have the `getrlimit' function. */ +#undef HAVE_GETRLIMIT + /* Define to 1 if you have the `getuid' function. */ #undef HAVE_GETUID @@ -234,6 +237,9 @@ /* Define to 1 if you have the <sys/procfs.h> header file. */ #undef HAVE_SYS_PROCFS_H +/* Define to 1 if you have the <sys/resource.h> header file. */ +#undef HAVE_SYS_RESOURCE_H + /* Define to 1 if you have the <sys/stat.h> header file. */ #undef HAVE_SYS_STAT_H |