syscall.WaitStatus.TrapCause (method)

3 uses

	syscall (current package)
		syscall_bsd.go#L138: func (w WaitStatus) TrapCause() int { return -1 }

	os
		exec_posix.go#L110: 		if status.StopSignal() == syscall.SIGTRAP && status.TrapCause() != 0 {
		exec_posix.go#L111: 			res += " (trap " + itoa(status.TrapCause()) + ")"