mirror of
https://github.com/golang/go
synced 2024-11-24 21:00:09 -07:00
os: update package location of exec to os/exec in comments
R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5503065
This commit is contained in:
parent
0b702937f1
commit
a626adce1e
@ -24,7 +24,7 @@ func (sig UnixSignal) String() string {
|
|||||||
// StartProcess starts a new process with the program, arguments and attributes
|
// StartProcess starts a new process with the program, arguments and attributes
|
||||||
// specified by name, argv and attr.
|
// specified by name, argv and attr.
|
||||||
//
|
//
|
||||||
// StartProcess is a low-level interface. The exec package provides
|
// StartProcess is a low-level interface. The os/exec package provides
|
||||||
// higher-level interfaces.
|
// higher-level interfaces.
|
||||||
func StartProcess(name string, argv []string, attr *ProcAttr) (p *Process, err error) {
|
func StartProcess(name string, argv []string, attr *ProcAttr) (p *Process, err error) {
|
||||||
sysattr := &syscall.ProcAttr{
|
sysattr := &syscall.ProcAttr{
|
||||||
@ -56,7 +56,7 @@ func (p *Process) Kill() error {
|
|||||||
// If successful, Exec never returns. If it fails, it returns an error.
|
// If successful, Exec never returns. If it fails, it returns an error.
|
||||||
//
|
//
|
||||||
// To run a child process, see StartProcess (for a low-level interface)
|
// To run a child process, see StartProcess (for a low-level interface)
|
||||||
// or the exec package (for higher-level interfaces).
|
// or the os/exec package (for higher-level interfaces).
|
||||||
func Exec(name string, argv []string, envv []string) error {
|
func Exec(name string, argv []string, envv []string) error {
|
||||||
if envv == nil {
|
if envv == nil {
|
||||||
envv = Environ()
|
envv = Environ()
|
||||||
|
Loading…
Reference in New Issue
Block a user