1
0
mirror of https://github.com/golang/go synced 2024-10-04 13:21:22 -06:00
go/src/runtime/malloc_go.cgo

24 lines
430 B
Plaintext
Raw Normal View History

// 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.
package malloc
#include "runtime.h"
#include "malloc.h"
func Alloc(n uintptr) (p *byte) {
p = malloc(n);
}
func Free(p *byte) {
free(p);
}
func Lookup(p *byte) (base *byte, size uintptr) {
mlookup(p, &base, &size);
}
func GetStats() (s *MStats) {
s = &mstats;
}