Home | History | Annotate | Download | only in os

Lines Matching full:process

15 // are Interrupt (send the process an interrupt) and Kill (force
16 // the process to exit).
22 func startProcess(name string, argv []string, attr *ProcAttr) (p *Process, err error) {
41 func (p *Process) writeProcFile(file string, data string) error {
51 func (p *Process) signal(sig Signal) error {
53 return errors.New("os: process already finished")
61 func (p *Process) kill() error {
65 func (p *Process) wait() (ps *ProcessState, err error) {
84 func (p *Process) release() error {
92 func findProcess(pid int) (p *Process, err error) {
97 // ProcessState stores information about a process, as reported by Wait.
99 pid int // The process's id.
103 // Pid returns the process id of the exited process.