syscall.WaitStatus.StopSignal (method)

6 uses

	syscall (current package)
		syscall_bsd.go#L131: func (w WaitStatus) StopSignal() Signal {

	os
		exec_posix.go#L109: 		res = "stop signal: " + status.StopSignal().String()
		exec_posix.go#L110: 		if status.StopSignal() == syscall.SIGTRAP && status.TrapCause() != 0 {

	src.elv.sh/pkg/eval
		exception.go#L293: 		causeDescription := quotedName + " stopped by signal " + fmt.Sprintf("%s (pid=%d)", ws.StopSignal(), exit.Pid)
		exception.go#L340: func (f exitFieldsStopped) SignalName() string   { return f.e.StopSignal().String() }
		exception.go#L341: func (f exitFieldsStopped) SignalNumber() string { return strconv.Itoa(int(f.e.StopSignal())) }