mirror of
https://github.com/golang/go
synced 2024-11-14 08:10:22 -07:00
3f8aa662e9
mark and sweep, stop the world garbage collector (intermediate step in the way to ref counting). can run pretty with an explicit gc after each file. R=r DELTA=502 (346 added, 143 deleted, 13 changed) OCL=20630 CL=20635
40 lines
547 B
C
40 lines
547 B
C
// 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.
|
|
|
|
#include "malloc.h"
|
|
|
|
void*
|
|
stackalloc(uint32 n)
|
|
{
|
|
void *v;
|
|
int32 *ref;
|
|
|
|
v = alloc(n);
|
|
//printf("stackalloc %d = %p\n", n, v);
|
|
ref = nil;
|
|
findobj(v, nil, nil, &ref);
|
|
*ref = RefStack;
|
|
return v;
|
|
}
|
|
|
|
void
|
|
stackfree(void *v)
|
|
{
|
|
//printf("stackfree %p\n", v);
|
|
free(v);
|
|
}
|
|
|
|
void*
|
|
mal(uint32 n)
|
|
{
|
|
return alloc(n);
|
|
}
|
|
|
|
void
|
|
sys·mal(uint32 n, uint8 *ret)
|
|
{
|
|
ret = alloc(n);
|
|
FLUSH(&ret);
|
|
}
|