...
Source file
src/os/exec_unix.go
Documentation: os
1
2
3
4
5
6
7 package os
8
9 import (
10 "errors"
11 "runtime"
12 "syscall"
13 "time"
14 )
15
16 func (p *Process) wait() (ps *ProcessState, err error) {
17 if p.Pid == -1 {
18 return nil, syscall.EINVAL
19 }
20
21
22 ready, err := p.blockUntilWaitable()
23 if err != nil {
24 return nil, err
25 }
26 if ready {
27
28
29 p.setDone()
30
31
32 p.sigMu.Lock()
33 p.sigMu.Unlock()
34 }
35
36 var (
37 status syscall.WaitStatus
38 rusage syscall.Rusage
39 pid1 int
40 e error
41 )
42 for {
43 pid1, e = syscall.Wait4(p.Pid, &status, 0, &rusage)
44 if e != syscall.EINTR {
45 break
46 }
47 }
48 if e != nil {
49 return nil, NewSyscallError("wait", e)
50 }
51 p.setDone()
52 ps = &ProcessState{
53 pid: pid1,
54 status: status,
55 rusage: &rusage,
56 }
57 return ps, nil
58 }
59
60 func (p *Process) signal(sig Signal) error {
61 if p.Pid == -1 {
62 return errors.New("os: process already released")
63 }
64 if p.Pid == 0 {
65 return errors.New("os: process not initialized")
66 }
67 p.sigMu.RLock()
68 defer p.sigMu.RUnlock()
69 if p.done() {
70 return ErrProcessDone
71 }
72 s, ok := sig.(syscall.Signal)
73 if !ok {
74 return errors.New("os: unsupported signal type")
75 }
76 if e := syscall.Kill(p.Pid, s); e != nil {
77 if e == syscall.ESRCH {
78 return ErrProcessDone
79 }
80 return e
81 }
82 return nil
83 }
84
85 func (p *Process) release() error {
86
87 p.Pid = -1
88
89 runtime.SetFinalizer(p, nil)
90 return nil
91 }
92
93 func findProcess(pid int) (p *Process, err error) {
94
95 return newProcess(pid, 0), nil
96 }
97
98 func (p *ProcessState) userTime() time.Duration {
99 return time.Duration(p.rusage.Utime.Nano()) * time.Nanosecond
100 }
101
102 func (p *ProcessState) systemTime() time.Duration {
103 return time.Duration(p.rusage.Stime.Nano()) * time.Nanosecond
104 }
105
View as plain text