diff options
| author | Ian Lance Taylor <iant@golang.org> | 2015-07-24 16:16:39 -0700 |
|---|---|---|
| committer | Ian Lance Taylor <iant@golang.org> | 2015-07-27 16:58:53 +0000 |
| commit | f0876a1a940b67b3f6029dfd0b6a06348792dc04 (patch) | |
| tree | ffb63478297c852a1e7c55e95b204cbaa7b6f0dc /src/runtime/sys_darwin_arm64.s | |
| parent | a2cf0568e853a22a50110e43d5185a096f3145c6 (diff) | |
| download | go-f0876a1a940b67b3f6029dfd0b6a06348792dc04.tar.xz | |
runtime: log all thread stack traces during GODEBUG=crash on Unix
This extends https://golang.org/cl/2811, which only applied to Darwin
and GNU/Linux, to all Unix systems.
Fixes #9591.
Change-Id: Iec3fb438564ba2924b15b447c0480f87c0bfd009
Reviewed-on: https://go-review.googlesource.com/12661
Run-TryBot: Ian Lance Taylor <iant@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Matthew Dempsky <mdempsky@google.com>
Reviewed-by: Russ Cox <rsc@golang.org>
Diffstat (limited to 'src/runtime/sys_darwin_arm64.s')
| -rw-r--r-- | src/runtime/sys_darwin_arm64.s | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/runtime/sys_darwin_arm64.s b/src/runtime/sys_darwin_arm64.s index 7aaf6b681b..11b28d774a 100644 --- a/src/runtime/sys_darwin_arm64.s +++ b/src/runtime/sys_darwin_arm64.s @@ -98,6 +98,11 @@ TEXT runtime·exit1(SB),NOSPLIT,$0 MOVD R0, (R1) // fail hard TEXT runtime·raise(SB),NOSPLIT,$0 + // Ideally we'd send the signal to the current thread, + // not the whole process, but that's too hard on OS X. + JMP runtime·raiseproc(SB) + +TEXT runtime·raiseproc(SB),NOSPLIT,$0 MOVW $SYS_getpid, R16 SVC $0x80 // arg 1 pid already in R0 from getpid |
