From ea89df2b76811505239b508a570ac9c0ea591038 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Fri, 9 Nov 2012 18:00:33 +0100 Subject: Use vfork() instead of fork() if available MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Hopefully this reduces the chance of hitting ‘unable to fork: Cannot allocate memory’ errors. vfork() is used for everything except starting builders. --- src/libutil/util.cc | 14 +++++++++++--- src/libutil/util.hh | 3 +++ 2 files changed, 14 insertions(+), 3 deletions(-) (limited to 'src/libutil') diff --git a/src/libutil/util.cc b/src/libutil/util.cc index 7e5d8bb8056a..bb59b09240ca 100644 --- a/src/libutil/util.cc +++ b/src/libutil/util.cc @@ -760,8 +760,8 @@ Pid::operator pid_t() void Pid::kill() { - if (pid == -1) return; - + if (pid == -1 || pid == 0) return; + printMsg(lvlError, format("killing process %1%") % pid); /* Send the requested signal to the child. If it has its own @@ -883,7 +883,8 @@ string runProgram(Path program, bool searchPath, const Strings & args) /* Fork. */ Pid pid; - pid = fork(); + pid = maybeVfork(); + switch (pid) { case -1: @@ -955,6 +956,13 @@ void setuidCleanup() } +#if HAVE_VFORK +pid_t (*maybeVfork)() = vfork; +#else +pid_t (*maybeVfork)() = fork; +#endif + + ////////////////////////////////////////////////////////////////////// diff --git a/src/libutil/util.hh b/src/libutil/util.hh index 0e121ea5c602..90413b0efe04 100644 --- a/src/libutil/util.hh +++ b/src/libutil/util.hh @@ -266,6 +266,9 @@ void closeOnExec(int fd); sanitize file handles 0, 1 and 2. */ void setuidCleanup(); +/* Call vfork() if available, otherwise fork(). */ +extern pid_t (*maybeVfork)(); + /* User interruption. */ -- cgit 1.4.1