| // Copyright 2010 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 "defs_GOOS_GOARCH.h" |
| runtime·SysAlloc(uintptr n) |
| v = runtime·mmap(nil, n, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_ANON|MAP_PRIVATE, -1, 0); |
| runtime·SysUnused(void *v, uintptr n) |
| // Linux's MADV_DONTNEED is like BSD's MADV_FREE. |
| runtime·madvise(v, n, MADV_FREE); |
| runtime·SysFree(void *v, uintptr n) |
| runtime·SysReserve(void *v, uintptr n) |
| return runtime·mmap(v, n, PROT_NONE, MAP_ANON|MAP_PRIVATE, -1, 0); |
| runtime·SysMap(void *v, uintptr n) |
| p = runtime·mmap(v, n, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_ANON|MAP_FIXED|MAP_PRIVATE, -1, 0); |
| runtime·throw("runtime: out of memory"); |
| runtime·throw("runtime: cannot map pages in arena address space"); |