commit | 659780b64323a5da3ff739c82d7d4c8efec21c39 | [log] [tgz] |
---|---|---|
author | Devon H. O'Dell <devon.odell@gmail.com> | Wed Nov 18 09:11:39 2009 -0800 |
committer | Russ Cox <rsc@golang.org> | Wed Nov 18 09:11:39 2009 -0800 |
tree | 9da5c69f2080289612e527f7251c029f51fe8a50 | |
parent | 43bcf47912c3b0f565597ee33d86695e530d79da [diff] |
Add an intptr type to runtime; needed in FreeBSD In thread.c, we need to cast to whatever the native size of intptr is on the system, but we only have uintptr available. They're the same size, but can't do signed casts without this one :). R=rsc CC=golang-dev https://golang.org/cl/156073