diff options
| author | Russ Cox <rsc@golang.org> | 2008-12-19 03:13:39 -0800 |
|---|---|---|
| committer | Russ Cox <rsc@golang.org> | 2008-12-19 03:13:39 -0800 |
| commit | da0a7d7b8f896bc2117ce488c4e245d626ef8aba (patch) | |
| tree | 9b40150f73466d543e7724ee596fb3c4ef094e72 /src/lib | |
| parent | ba882f9940361e7f9f969fcc1cc613e735d38191 (diff) | |
| download | go-da0a7d7b8f896bc2117ce488c4e245d626ef8aba.tar.xz | |
malloc bug fixes.
use malloc by default.
free stacks.
R=r
DELTA=424 (333 added, 29 deleted, 62 changed)
OCL=21553
CL=21584
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/malloc.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/malloc.go b/src/lib/malloc.go index 11e2e28df0..14d372b4f7 100644 --- a/src/lib/malloc.go +++ b/src/lib/malloc.go @@ -16,4 +16,4 @@ type Stats struct { export func Alloc(uint64) *byte; export func Free(*byte); export func GetStats() *Stats; - +export func Lookup(*byte) (*byte, uint64); |
