aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/sys_darwin_arm64.s
diff options
context:
space:
mode:
authorIan Lance Taylor <iant@golang.org>2015-07-24 16:16:39 -0700
committerIan Lance Taylor <iant@golang.org>2015-07-27 16:58:53 +0000
commitf0876a1a940b67b3f6029dfd0b6a06348792dc04 (patch)
treeffb63478297c852a1e7c55e95b204cbaa7b6f0dc /src/runtime/sys_darwin_arm64.s
parenta2cf0568e853a22a50110e43d5185a096f3145c6 (diff)
downloadgo-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.s5
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