type runtime.waitReason

7 uses

	runtime (current package)
		proc.go#L319: func gopark(unlockf func(*g, unsafe.Pointer) bool, lock unsafe.Pointer, reason waitReason, traceEv byte, traceskip int) {
		proc.go#L341: func goparkunlock(lock *mutex, reason waitReason, traceEv byte, traceskip int) {
		runtime2.go#L429: 	waitreason   waitReason // if status==Gwaiting
		runtime2.go#L985: type waitReason uint8
		runtime2.go#L988: 	waitReasonZero                  waitReason = iota // ""
		runtime2.go#L1047: func (w waitReason) String() string {
		runtime2.go#L1048: 	if w < 0 || w >= waitReason(len(waitReasonStrings)) {