diff options
author | Graham Christensen <graham@grahamc.com> | 2019-05-10 20:59:39 -0400 |
---|---|---|
committer | Graham Christensen <graham@grahamc.com> | 2019-05-12 13:17:26 -0400 |
commit | 6df61db0600ca73ccd51e3e5bec5312a04e99da1 (patch) | |
tree | 66de67c9b1ce6b90ea9d643d95d9a9d750b3c376 /src/libutil/util.hh | |
parent | c78686e411e0a14cff51836fe6c35d7584171df3 (diff) |
diff hook: execute as the build user, and pass the temp dir
Diffstat (limited to 'src/libutil/util.hh')
-rw-r--r-- | src/libutil/util.hh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libutil/util.hh b/src/libutil/util.hh index 54936a5cb..824a35b98 100644 --- a/src/libutil/util.hh +++ b/src/libutil/util.hh @@ -265,6 +265,8 @@ string runProgram(Path program, bool searchPath = false, const Strings & args = Strings(), const std::optional<std::string> & input = {}); +pid_t doFork(bool allowVfork, std::function<void()> fun); + struct RunOptions { Path program; |