From: Russ Cox Date: Wed, 2 Apr 2014 20:55:30 +0000 (-0400) Subject: runtime: revert change to PoisonPtr value X-Git-Tag: go1.3beta1~213 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=81bc9b3ffd8a51ba171eafb554aef2c9731196d9;p=gostls13.git runtime: revert change to PoisonPtr value Submitted accidentally in CL 83630044. Fixes various builds. TBR=khr CC=golang-codereviews https://golang.org/cl/83100047 --- 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)