From: Kay Sievers Date: Fri, 31 Jul 2015 13:33:49 +0000 (+0200) Subject: timesyncd: remove RLIMIT_NPROC X-Git-Tag: v224~6 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b506d3141b97d0a3fbda461f4b8d9d64f46408d1;p=thirdparty%2Fsystemd.git timesyncd: remove RLIMIT_NPROC NSS plugins might create additional threads. Remove the limit, we cannot really make any assumptions here. --- diff --git a/src/timesync/timesyncd.c b/src/timesync/timesyncd.c index b030206948a..7b4178c993e 100644 --- a/src/timesync/timesyncd.c +++ b/src/timesync/timesyncd.c @@ -113,10 +113,6 @@ int main(int argc, char *argv[]) { if (r < 0) goto finish; - /* We need one process for ourselves, plus one thread for the asynchronous resolver */ - if (setrlimit(RLIMIT_NPROC, &RLIMIT_MAKE_CONST(2)) < 0) - log_warning_errno(errno, "Failed to lower RLIMIT_NPROC to 2: %m"); - assert_se(sigprocmask_many(SIG_BLOCK, NULL, SIGTERM, SIGINT, -1) >= 0); r = manager_new(&m);