aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/testdata/testprogcgo/sigpanic.go
blob: cb46030980260d1a6d029bd860a7f84577b73b23 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// Copyright 2018 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.

package main

// This program will crash.
// We want to test unwinding from sigpanic into C code (without a C symbolizer).

/*
#cgo CFLAGS: -O0

char *pnil;

static int f1(void) {
	*pnil = 0;
	return 0;
}
*/
import "C"

func init() {
	register("TracebackSigpanic", TracebackSigpanic)
}

func TracebackSigpanic() {
	C.f1()
}