Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for pidDeactivate (0.21 sec)

  1. src/os/exec.go

    	if p.mode != modePID {
    		panic("pidStatus called in invalid mode")
    	}
    
    	return processStatus(p.state.Load())
    }
    
    func (p *Process) pidDeactivate(reason processStatus) {
    	if p.mode != modePID {
    		panic("pidDeactivate called in invalid mode")
    	}
    
    	// Both Release and successful Wait will deactivate the PID. Only one
    	// of those should win, so nothing left to do here if the compare
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 12.8K bytes
    - Viewed (0)
Back to top