mirror of
https://github.com/mjl-/mox.git
synced 2024-12-27 08:53:48 +03:00
10 lines
257 B
Go
10 lines
257 B
Go
|
package mox
|
||
|
|
||
|
// Fork and exec as unprivileged user.
|
||
|
//
|
||
|
// Not implemented yet on windows. Would need to understand its security model
|
||
|
// first.
|
||
|
func ForkExecUnprivileged() {
|
||
|
xlog.Fatal("fork and exec to unprivileged user not yet implemented on windows")
|
||
|
}
|