Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ProcState (0.25 sec)

  1. src/internal/trace/resources.go

    	case GoWaiting:
    		return "Waiting"
    	case GoSyscall:
    		return "Syscall"
    	}
    	return "Bad"
    }
    
    // ProcState represents the state of a proc.
    //
    // New ProcStates may be added in the future. Users of this type must be robust
    // to that possibility.
    type ProcState uint8
    
    const (
    	ProcUndetermined ProcState = iota // No information is known about the proc.
    	ProcNotExist                      // Proc does not exist.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top