Brad Fitzpatrick | 5194744 | 2016-03-01 22:57:46 +0000 | [diff] [blame] | 1 | // Copyright 2011 The Go Authors. All rights reserved. |
Russ Cox | c81a0ed | 2014-09-08 14:05:23 -0400 | [diff] [blame] | 2 | // Use of this source code is governed by a BSD-style |
| 3 | // license that can be found in the LICENSE file. |
| 4 | |
| 5 | package runtime |
| 6 | |
Keith Randall | cd5b144 | 2015-03-11 12:58:47 -0700 | [diff] [blame] | 7 | // These functions are called from C code via cgo/callbacks.go. |
Russ Cox | c81a0ed | 2014-09-08 14:05:23 -0400 | [diff] [blame] | 8 | |
Russ Cox | c81a0ed | 2014-09-08 14:05:23 -0400 | [diff] [blame] | 9 | // Panic. |
| 10 | |
| 11 | func _cgo_panic_internal(p *byte) { |
| 12 | panic(gostringnocopy(p)) |
| 13 | } |