mirror of
https://github.com/mjl-/mox.git
synced 2025-06-27 23:08:14 +03:00
10 lines
259 B
Go
10 lines
259 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() {
|
|
pkglog.Fatal("fork and exec to unprivileged user not yet implemented on windows")
|
|
}
|