mirror of
https://github.com/golang/go
synced 2024-11-20 09:44:45 -07:00
5146a93e72
This provides a way to generate core dumps when people need them. The settings are: GOTRACEBACK=0 no traceback on panic, just exit GOTRACEBACK=1 default - traceback on panic, then exit GOTRACEBACK=2 traceback including runtime frames on panic, then exit GOTRACEBACK=crash traceback including runtime frames on panic, then crash Fixes #3257. R=golang-dev, devon.odell, r, daniel.morsing, ality CC=golang-dev https://golang.org/cl/7666044
15 lines
463 B
C
15 lines
463 B
C
// Copyright 2013 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
#define SIG_DFL ((void*)0)
|
|
#define SIG_IGN ((void*)1)
|
|
|
|
typedef void GoSighandler(int32, Siginfo*, void*, G*);
|
|
void runtime·setsig(int32, GoSighandler*, bool);
|
|
GoSighandler* runtime·getsig(int32);
|
|
|
|
void runtime·sighandler(int32 sig, Siginfo *info, void *context, G *gp);
|
|
void runtime·raise(int32);
|
|
|