diff options
author | Lennart Poettering <lennart@poettering.net> | 2012-04-12 03:38:52 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2012-04-12 12:58:19 +0200 |
commit | 68faf98ca09314b61314ad2ac0cc133c400a83f9 (patch) | |
tree | 209d19aeced8bfdf54a425f1fe205f42fa455bd8 /src/shared/util.h | |
parent | d18f337c3f2fe14240598c18415f72d0cf15393f (diff) |
execute: when we can't get the requested rlimit, get the next closest
Diffstat (limited to 'src/shared/util.h')
-rw-r--r-- | src/shared/util.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/shared/util.h b/src/shared/util.h index 3f4e49e6bc..c487b702bf 100644 --- a/src/shared/util.h +++ b/src/shared/util.h @@ -34,6 +34,7 @@ #include <limits.h> #include <sys/stat.h> #include <dirent.h> +#include <sys/resource.h> #include "macro.h" @@ -531,4 +532,6 @@ int fd_inc_rcvbuf(int fd, size_t n); int fork_agent(pid_t *pid, const int except[], unsigned n_except, const char *path, ...); +int setrlimit_closest(int resource, const struct rlimit *rlim); + #endif |