diff options
author | Graham Christensen <graham@grahamc.com> | 2019-05-11T00·59-0400 |
---|---|---|
committer | Graham Christensen <graham@grahamc.com> | 2019-05-12T17·17-0400 |
commit | 6df61db0600ca73ccd51e3e5bec5312a04e99da1 (patch) | |
tree | 66de67c9b1ce6b90ea9d643d95d9a9d750b3c376 /src/libutil/util.cc | |
parent | c78686e411e0a14cff51836fe6c35d7584171df3 (diff) |
diff hook: execute as the build user, and pass the temp dir
Diffstat (limited to 'src/libutil/util.cc')
-rw-r--r-- | src/libutil/util.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libutil/util.cc b/src/libutil/util.cc index a7170566533e..0f4d3d92b866 100644 --- a/src/libutil/util.cc +++ b/src/libutil/util.cc @@ -914,8 +914,8 @@ void killUser(uid_t uid) /* Wrapper around vfork to prevent the child process from clobbering the caller's stack frame in the parent. */ -static pid_t doFork(bool allowVfork, std::function<void()> fun) __attribute__((noinline)); -static pid_t doFork(bool allowVfork, std::function<void()> fun) +pid_t doFork(bool allowVfork, std::function<void()> fun) __attribute__((noinline)); +pid_t doFork(bool allowVfork, std::function<void()> fun) { #ifdef __linux__ pid_t pid = allowVfork ? vfork() : fork(); |