We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3df6c0 commit d7d235cCopy full SHA for d7d235c
src/runtime/signal_unix.go
@@ -973,16 +973,6 @@ func raisebadsignal(sig uint32, c *sigctxt) {
973
974
//go:nosplit
975
func crash() {
976
- // OS X core dumps are linear dumps of the mapped memory,
977
- // from the first virtual byte to the last, with zeros in the gaps.
978
- // Because of the way we arrange the address space on 64-bit systems,
979
- // this means the OS X core file will be >128 GB and even on a zippy
980
- // workstation can take OS X well over an hour to write (uninterruptible).
981
- // Save users from making that mistake.
982
- if GOOS == "darwin" && GOARCH == "amd64" {
983
- return
984
- }
985
-
986
dieFromSignal(_SIGABRT)
987
}
988
0 commit comments