diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2020-04-16 09:14:02 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2020-04-16 09:14:02 +0000 |
commit | ec4824c60f51254b91fd39bc5b32a74640ff0fd9 (patch) | |
tree | 8b6021dff7b2dee533596b06dd384f4a7b70ee6d /osutil/isolate_win.go | |
parent | cc9c74665a9cabcfb006ab6b7a9beafb95ff7316 (diff) | |
parent | 54044ab8db2336d01d8251d6ff9c93ece6eb514c (diff) |
Merge #302
302: Add user to worker r=48d90782 a=48d90782
Co-authored-by: Valery Piashchynski <[email protected]>
Diffstat (limited to 'osutil/isolate_win.go')
-rw-r--r-- | osutil/isolate_win.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/osutil/isolate_win.go b/osutil/isolate_win.go index ca7fca20..52fb5d8a 100644 --- a/osutil/isolate_win.go +++ b/osutil/isolate_win.go @@ -11,3 +11,7 @@ import ( func IsolateProcess(cmd *exec.Cmd) { cmd.SysProcAttr = &syscall.SysProcAttr{CreationFlags: syscall.CREATE_NEW_PROCESS_GROUP} } + +func ExecuteFromUser(cmd *exec.Cmd, u string) error { + return nil +}
\ No newline at end of file |