2010-12-03 05:34:57 +01:00
|
|
|
// Copyright 2009 The Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
// Process etc.
|
|
|
|
|
|
|
|
package os
|
|
|
|
|
2015-01-15 01:27:56 +01:00
|
|
|
import (
|
|
|
|
"runtime"
|
|
|
|
"syscall"
|
|
|
|
)
|
2010-12-03 05:34:57 +01:00
|
|
|
|
2011-12-13 00:40:51 +01:00
|
|
|
// Args hold the command-line arguments, starting with the program name.
|
|
|
|
var Args []string
|
2010-12-03 05:34:57 +01:00
|
|
|
|
2015-01-15 01:27:56 +01:00
|
|
|
func init() {
|
|
|
|
if runtime.GOOS == "windows" {
|
|
|
|
// Initialized in exec_windows.go.
|
|
|
|
return
|
|
|
|
}
|
|
|
|
Args = runtime_args()
|
|
|
|
}
|
|
|
|
|
|
|
|
func runtime_args() []string // in package runtime
|
|
|
|
|
2010-12-03 05:34:57 +01:00
|
|
|
// Getuid returns the numeric user id of the caller.
|
|
|
|
func Getuid() int { return syscall.Getuid() }
|
|
|
|
|
|
|
|
// Geteuid returns the numeric effective user id of the caller.
|
|
|
|
func Geteuid() int { return syscall.Geteuid() }
|
|
|
|
|
|
|
|
// Getgid returns the numeric group id of the caller.
|
|
|
|
func Getgid() int { return syscall.Getgid() }
|
|
|
|
|
|
|
|
// Getegid returns the numeric effective group id of the caller.
|
|
|
|
func Getegid() int { return syscall.Getegid() }
|
|
|
|
|
|
|
|
// Getgroups returns a list of the numeric ids of groups that the caller belongs to.
|
2011-12-03 03:17:34 +01:00
|
|
|
func Getgroups() ([]int, error) {
|
2011-04-07 19:09:10 +02:00
|
|
|
gids, e := syscall.Getgroups()
|
|
|
|
return gids, NewSyscallError("getgroups", e)
|
2010-12-03 05:34:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Exit causes the current program to exit with the given status code.
|
|
|
|
// Conventionally, code zero indicates success, non-zero an error.
|
2013-01-29 21:52:43 +01:00
|
|
|
// The program terminates immediately; deferred functions are
|
|
|
|
// not run.
|
2010-12-03 05:34:57 +01:00
|
|
|
func Exit(code int) { syscall.Exit(code) }
|