type os.Process
19 uses
os (current package)
exec.go#L21: type Process struct {
exec.go#L28: func newProcess(pid int, handle uintptr) *Process {
exec.go#L29: p := &Process{Pid: pid, handle: handle}
exec.go#L30: runtime.SetFinalizer(p, (*Process).Release)
exec.go#L34: func (p *Process) setDone() {
exec.go#L38: func (p *Process) done() bool {
exec.go#L92: func FindProcess(pid int) (*Process, error) {
exec.go#L109: func StartProcess(name string, argv []string, attr *ProcAttr) (*Process, error) {
exec.go#L117: func (p *Process) Release() error {
exec.go#L124: func (p *Process) Kill() error {
exec.go#L133: func (p *Process) Wait() (*ProcessState, error) {
exec.go#L139: func (p *Process) Signal(sig Signal) error {
exec_posix.go#L26: func startProcess(name string, argv []string, attr *ProcAttr) (p *Process, err error) {
exec_posix.go#L66: func (p *Process) kill() error {
exec_unix.go#L16: func (p *Process) wait() (ps *ProcessState, err error) {
exec_unix.go#L62: func (p *Process) signal(sig Signal) error {
exec_unix.go#L87: func (p *Process) release() error {
exec_unix.go#L95: func findProcess(pid int) (p *Process, err error) {
wait_waitid.go#L23: func (p *Process) blockUntilWaitable() (bool, error) {
|
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |