aboutsummaryrefslogtreecommitdiff
path: root/src/pkg/runtime/runtime.h
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2011-12-20 17:54:40 -0500
committerRuss Cox <rsc@golang.org>2011-12-20 17:54:40 -0500
commite83cd7f750efe3ac2233f0589971f1e0e424382e (patch)
tree0bffa867fa07b8b7469015012410e3d65742bf77 /src/pkg/runtime/runtime.h
parent01507b9ad168b98a1d528e6039f98a13d633034e (diff)
downloadgo-e83cd7f750efe3ac2233f0589971f1e0e424382e.tar.xz
build: a round of fixes
TBR=r CC=golang-dev https://golang.org/cl/5503052
Diffstat (limited to 'src/pkg/runtime/runtime.h')
-rw-r--r--src/pkg/runtime/runtime.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/pkg/runtime/runtime.h b/src/pkg/runtime/runtime.h
index 7ab7a3fdd6..7f1cb59eb5 100644
--- a/src/pkg/runtime/runtime.h
+++ b/src/pkg/runtime/runtime.h
@@ -635,7 +635,8 @@ void runtime·futexwakeup(uint32*, uint32);
* low level C-called
*/
uint8* runtime·mmap(byte*, uintptr, int32, int32, int32, uint32);
-void runtime·munmap(uint8*, uintptr);
+void runtime·munmap(byte*, uintptr);
+void runtime·madvise(byte*, uintptr, int32);
void runtime·memclr(byte*, uintptr);
void runtime·setcallerpc(void*, void*);
void* runtime·getcallerpc(void*);