LEFT | RIGHT |
(no file at all) | |
1 // Copyright 2009 The Go Authors. All rights reserved. | 1 // Copyright 2009 The Go Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style | 2 // Use of this source code is governed by a BSD-style |
3 // license that can be found in the LICENSE file. | 3 // license that can be found in the LICENSE file. |
4 | 4 |
5 // +build darwin freebsd linux netbsd openbsd windows | 5 // +build darwin freebsd linux netbsd openbsd windows |
6 | 6 |
7 package os | 7 package os |
8 | 8 |
9 import ( | 9 import ( |
10 "syscall" | 10 "syscall" |
11 ) | 11 ) |
12 | 12 |
13 // StartProcess starts a new process with the program, arguments and attributes | 13 // StartProcess starts a new process with the program, arguments and attributes |
14 // specified by name, argv and attr. | 14 // specified by name, argv and attr. |
15 // | 15 // |
16 // StartProcess is a low-level interface. The os/exec package provides | 16 // StartProcess is a low-level interface. The os/exec package provides |
17 // higher-level interfaces. | 17 // higher-level interfaces. |
18 // | 18 // |
19 // If there is an error, it will be of type *PathError. | 19 // If there is an error, it will be of type *PathError. |
20 func StartProcess(name string, argv []string, attr *ProcAttr) (p *Process, err e
rror) { | 20 func StartProcess(name string, argv []string, attr *ProcAttr) (p *Process, err e
rror) { |
| 21 // Double-check existence of the directory we want |
| 22 // to chdir into. We can make the error clearer this way. |
| 23 if attr != nil && attr.Dir != "" { |
| 24 if _, err := Stat(attr.Dir); err != nil { |
| 25 pe := err.(*PathError) |
| 26 pe.Op = "chdir" |
| 27 return nil, pe |
| 28 } |
| 29 } |
| 30 |
21 sysattr := &syscall.ProcAttr{ | 31 sysattr := &syscall.ProcAttr{ |
22 Dir: attr.Dir, | 32 Dir: attr.Dir, |
23 Env: attr.Env, | 33 Env: attr.Env, |
24 Sys: attr.Sys, | 34 Sys: attr.Sys, |
25 } | 35 } |
26 if sysattr.Env == nil { | 36 if sysattr.Env == nil { |
27 sysattr.Env = Environ() | 37 sysattr.Env = Environ() |
28 } | 38 } |
29 for _, f := range attr.Files { | 39 for _, f := range attr.Files { |
30 sysattr.Files = append(sysattr.Files, f.Fd()) | 40 sysattr.Files = append(sysattr.Files, f.Fd()) |
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
123 res += " (trap " + itod(status.TrapCause()) + ")" | 133 res += " (trap " + itod(status.TrapCause()) + ")" |
124 } | 134 } |
125 case status.Continued(): | 135 case status.Continued(): |
126 res = "continued" | 136 res = "continued" |
127 } | 137 } |
128 if status.CoreDump() { | 138 if status.CoreDump() { |
129 res += " (core dumped)" | 139 res += " (core dumped)" |
130 } | 140 } |
131 return res | 141 return res |
132 } | 142 } |
LEFT | RIGHT |