mirror of
https://github.com/mjl-/mox.git
synced 2025-03-21 17:42:32 +03:00
9 lines
259 B
Go
9 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")
|
|
}
|