aboutsummaryrefslogtreecommitdiff
path: root/src/pkg/runtime/runtime.h
diff options
context:
space:
mode:
authorDmitriy Vyukov <dvyukov@google.com>2013-05-28 21:10:10 +0400
committerDmitriy Vyukov <dvyukov@google.com>2013-05-28 21:10:10 +0400
commit081129e286fcda2c9525dd08bd90ff6883df0698 (patch)
treecf4796afa58ed6a03d82b5d46dd67b2f996e1d7d /src/pkg/runtime/runtime.h
parent4d6bfcf24504bb2de0bf63bf43ad703ba808a3e9 (diff)
downloadgo-081129e286fcda2c9525dd08bd90ff6883df0698.tar.xz
runtime: allocate internal symbol table eagerly
we need it for GC anyway. R=golang-dev, khr, dave, khr CC=golang-dev https://golang.org/cl/9728044
Diffstat (limited to 'src/pkg/runtime/runtime.h')
-rw-r--r--src/pkg/runtime/runtime.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/pkg/runtime/runtime.h b/src/pkg/runtime/runtime.h
index 17f8c9a94a..44cc0138c0 100644
--- a/src/pkg/runtime/runtime.h
+++ b/src/pkg/runtime/runtime.h
@@ -749,6 +749,7 @@ void runtime·mpreinit(M*);
void runtime·minit(void);
void runtime·unminit(void);
void runtime·signalstack(byte*, int32);
+void runtime·symtabinit(void);
Func* runtime·findfunc(uintptr);
int32 runtime·funcline(Func*, uintptr);
void* runtime·stackalloc(uint32);