diff options
author | Jan Kratochvil <jan.kratochvil@redhat.com> | 2010-01-15 00:34:37 +0000 |
---|---|---|
committer | Jan Kratochvil <jan.kratochvil@redhat.com> | 2010-01-15 00:34:37 +0000 |
commit | 7991dee7827bb5d0343be69d7e34cd0ac9562953 (patch) | |
tree | cd8fa1c0a21a11945f1b1a68044c064712097f3e /gdb/config.in | |
parent | de950080620b77512016e97e6ae322508841870f (diff) | |
download | gdb-7991dee7827bb5d0343be69d7e34cd0ac9562953.zip gdb-7991dee7827bb5d0343be69d7e34cd0ac9562953.tar.gz gdb-7991dee7827bb5d0343be69d7e34cd0ac9562953.tar.bz2 |
gdb/
* configure.ac (AC_CHECK_FUNCS): Check for setrlimit and getrlimit.
* configure: Regenerate.
* config.in: Regenerate.
* utils.c: Include sys/resource.h.
(dump_core, can_dump_core): New.
(internal_vproblem): Update the comment. Check can_dump_core while
setting dump_core_p. Replace two abort calls by dump_core calls.
Diffstat (limited to 'gdb/config.in')
-rw-r--r-- | gdb/config.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gdb/config.in b/gdb/config.in index f9cad98..ebde876 100644 --- a/gdb/config.in +++ b/gdb/config.in @@ -165,6 +165,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 `getrusage' function. */ #undef HAVE_GETRUSAGE @@ -366,6 +369,9 @@ /* Define to 1 if you have the `setpgrp' function. */ #undef HAVE_SETPGRP +/* Define to 1 if you have the `setrlimit' function. */ +#undef HAVE_SETRLIMIT + /* Define to 1 if you have the `setsid' function. */ #undef HAVE_SETSID |