mirror of
https://github.com/golang/go
synced 2024-11-20 04:24:51 -07:00
12518e441b
* move memory code into $GOOS-specific directory. * allow printing of static strings < 256 bytes. (dynamic strings will bump maxstring as they are allocated.) * use cgo2c for runtime.mal. R=r, dho CC=golang-dev https://golang.org/cl/186143
41 lines
647 B
C
41 lines
647 B
C
#include "runtime.h"
|
|
#include "defs.h"
|
|
#include "os.h"
|
|
#include "malloc.h"
|
|
|
|
void*
|
|
SysAlloc(uintptr n)
|
|
{
|
|
void *p;
|
|
|
|
mstats.sys += n;
|
|
p = runtime_mmap(nil, n, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_ANON|MAP_PRIVATE, -1, 0);
|
|
if(p < (void*)4096) {
|
|
if(p == (void*)EACCES) {
|
|
printf("mmap: access denied\n");
|
|
printf("If you're running SELinux, enable execmem for this process.\n");
|
|
} else {
|
|
printf("mmap: errno=%p\n", p);
|
|
}
|
|
exit(2);
|
|
}
|
|
return p;
|
|
}
|
|
|
|
void
|
|
SysUnused(void *v, uintptr n)
|
|
{
|
|
USED(v);
|
|
USED(n);
|
|
// TODO(rsc): call madvise MADV_DONTNEED
|
|
}
|
|
|
|
void
|
|
SysFree(void *v, uintptr n)
|
|
{
|
|
USED(v);
|
|
USED(n);
|
|
// TODO(rsc): call munmap
|
|
}
|
|
|