| // Copyright 2015 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. |
| fprintf(stderr, "ERROR: C SIGSEGV not thrown on caught?.\n"); |
| static void sighandler(int signum) { |
| static void __attribute__ ((constructor)) sigsetup(void) { |
| act.sa_handler = &sighandler; |
| sigaction(SIGSEGV, &act, 0); |
| fmt.Errorf("ERROR: couldn't raise SIGSEGV in Go.") |
| // Test that the signal originating in Go is handled (and recovered) by Go. |
| fmt.Errorf("couldn't recover from SIGSEGV in Go.") |
| // Test that the signal originating in C is handled by C. |