...

Source file src/os/exec_unix.go

Documentation: os

     1  // Copyright 2009 The Go Authors. All rights reserved.
     2  // Use of this source code is governed by a BSD-style
     3  // license that can be found in the LICENSE file.
     4  
     5  //go:build unix || (js && wasm) || wasip1
     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  	// If we can block until Wait4 will succeed immediately, do so.
    22  	ready, err := p.blockUntilWaitable()
    23  	if err != nil {
    24  		return nil, err
    25  	}
    26  	if ready {
    27  		// Mark the process done now, before the call to Wait4,
    28  		// so that Process.signal will not send a signal.
    29  		p.setDone()
    30  		// Acquire a write lock on sigMu to wait for any
    31  		// active call to the signal method to complete.
    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  	// NOOP for unix.
    87  	p.Pid = -1
    88  	// no need for a finalizer anymore
    89  	runtime.SetFinalizer(p, nil)
    90  	return nil
    91  }
    92  
    93  func findProcess(pid int) (p *Process, err error) {
    94  	// NOOP for unix.
    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