diff options
author | Russ Cox <rsc@golang.org> | 2009-06-05 10:59:37 -0700 |
---|---|---|
committer | Russ Cox <rsc@golang.org> | 2009-06-05 10:59:37 -0700 |
commit | 9586b8668bc752d306f9809dcf74e955331e2f8e (patch) | |
tree | 36c9cc73a47e1982105d95309a0b3753f891c694 /src/lib | |
parent | 3ef9634db68330266388315ee04a9d37b6701f44 (diff) | |
download | golang-9586b8668bc752d306f9809dcf74e955331e2f8e.tar.gz |
fix 386 malloc tests,
detect 386 darwin breakpoint line.
R=r
DELTA=22 (4 added, 0 deleted, 18 changed)
OCL=29929
CL=29944
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/malloc/malloc.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/malloc/malloc.go b/src/lib/malloc/malloc.go index 8e4397a0b..fec53f08f 100644 --- a/src/lib/malloc/malloc.go +++ b/src/lib/malloc/malloc.go @@ -17,7 +17,7 @@ type Stats struct { EnableGC bool; } -func Alloc(uint64) *byte +func Alloc(uintptr) *byte func Free(*byte) func GetStats() *Stats func Lookup(*byte) (*byte, uintptr) |