summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2014-02-20 16:18:05 -0500
committerRuss Cox <rsc@golang.org>2014-02-20 16:18:05 -0500
commited591404c19dffaf84876d8e3d75db926b78a130 (patch)
treebd9764edb7953c1b09a4ac8231c994e370947744 /doc
parent50be4ad5a71a5db95c620805be653d41c7d41ebd (diff)
downloadgo-ed591404c19dffaf84876d8e3d75db926b78a130.tar.gz
runtime/debug: add SetPanicOnFault
SetPanicOnFault allows recovery from unexpected memory faults. This can be useful if you are using a memory-mapped file or probing the address space of the current program. LGTM=r R=r CC=golang-codereviews https://codereview.appspot.com/66590044
Diffstat (limited to 'doc')
-rw-r--r--doc/go1.3.txt1
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/go1.3.txt b/doc/go1.3.txt
index 31dfd38a1..613d26197 100644
--- a/doc/go1.3.txt
+++ b/doc/go1.3.txt
@@ -8,3 +8,4 @@ testing: add b.RunParallel function (CL 57270043)
misc/benchcmp has been replaced by go tool benchcmp (CL 47980043)
cmd/go, go/build: support .m files (CL 60590044)
unicode: upgrade from Unicode 6.2.0 to 6.3.0 (CL 65400044)
+runtime/debug: add SetPanicOnFault (CL 66590044)