diff options
| author | Russ Cox <rsc@golang.org> | 2010-02-03 16:31:34 -0800 |
|---|---|---|
| committer | Russ Cox <rsc@golang.org> | 2010-02-03 16:31:34 -0800 |
| commit | 33e396a4a725a2da9cc9ef1f6a0734f0c1381b8d (patch) | |
| tree | 7c63784eb4007f5d7a118b7133d7a611efa2704d /src/pkg/malloc/malloc.go | |
| parent | 00f4c6a1b5bc9ed76529d596ac28ecdaf890fb52 (diff) | |
| download | go-33e396a4a725a2da9cc9ef1f6a0734f0c1381b8d.tar.xz | |
finalizers; merge package malloc into package runtime
R=r, cw
CC=golang-dev
https://golang.org/cl/198085
Diffstat (limited to 'src/pkg/malloc/malloc.go')
| -rw-r--r-- | src/pkg/malloc/malloc.go | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/src/pkg/malloc/malloc.go b/src/pkg/malloc/malloc.go deleted file mode 100644 index c66b6237dd..0000000000 --- a/src/pkg/malloc/malloc.go +++ /dev/null @@ -1,29 +0,0 @@ -// Copyright 2009 The Go Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -// Go declarations for malloc. -// The actual functions are written in C -// and part of the runtime library. - -// The malloc package exposes statistics and other low-level details about -// the run-time memory allocator and collector. It is intended for debugging -// purposes only; other uses are discouraged. -package malloc - -type Stats struct { - Alloc uint64 - Sys uint64 - Stacks uint64 - InusePages uint64 - NextGC uint64 - Lookups uint64 - Mallocs uint64 - EnableGC bool -} - -func Alloc(uintptr) *byte -func Free(*byte) -func GetStats() *Stats -func Lookup(*byte) (*byte, uintptr) -func GC() |
