mirror of
https://github.com/golang/go
synced 2024-11-25 05:57:57 -07:00
pkg/runtime/plan9: Warning remediation, for Plan 9 native.
. Missing declaration of runtime.brk_(); . Argument v in runtime.SysReserve() is not used; (I'd prefer a Plan 9-type solution...) R=golang-dev, r, r2 CC=golang-dev https://golang.org/cl/4368076
This commit is contained in:
parent
02cae293cc
commit
ceef10c222
@ -4,6 +4,7 @@
|
|||||||
|
|
||||||
#include "runtime.h"
|
#include "runtime.h"
|
||||||
#include "malloc.h"
|
#include "malloc.h"
|
||||||
|
#include "os.h"
|
||||||
|
|
||||||
extern byte end[];
|
extern byte end[];
|
||||||
static byte *bloc = { end };
|
static byte *bloc = { end };
|
||||||
@ -52,5 +53,6 @@ runtime·SysMap(void *v, uintptr nbytes)
|
|||||||
void*
|
void*
|
||||||
runtime·SysReserve(void *v, uintptr nbytes)
|
runtime·SysReserve(void *v, uintptr nbytes)
|
||||||
{
|
{
|
||||||
|
USED(v);
|
||||||
return runtime·SysAlloc(nbytes);
|
return runtime·SysAlloc(nbytes);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user