aboutsummaryrefslogtreecommitdiff
path: root/src/pkg
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2014-04-02 16:55:30 -0400
committerRuss Cox <rsc@golang.org>2014-04-02 16:55:30 -0400
commit81bc9b3ffd8a51ba171eafb554aef2c9731196d9 (patch)
treeb2bdd0f65780073fcfa645cb742dcda403613a2d /src/pkg
parent4676fae525a5c399274ac0fcb9503aee11d37c56 (diff)
downloadgo-81bc9b3ffd8a51ba171eafb554aef2c9731196d9.tar.xz
runtime: revert change to PoisonPtr value
Submitted accidentally in CL 83630044. Fixes various builds. TBR=khr CC=golang-codereviews https://golang.org/cl/83100047
Diffstat (limited to 'src/pkg')
-rw-r--r--src/pkg/runtime/malloc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/runtime/malloc.h b/src/pkg/runtime/malloc.h
index 9d478f82c1..ec12a3e164 100644
--- a/src/pkg/runtime/malloc.h
+++ b/src/pkg/runtime/malloc.h
@@ -637,4 +637,4 @@ void runtime·memorydump(void);
int32 runtime·setgcpercent(int32);
// Value we use to mark dead pointers when GODEBUG=gcdead=1.
-#define PoisonPtr ((uintptr)0xf9696969f9696969LL)
+#define PoisonPtr ((uintptr)0x6969696969696969LL)