diff options
| author | Dmitriy Vyukov <dvyukov@google.com> | 2013-05-28 21:10:10 +0400 |
|---|---|---|
| committer | Dmitriy Vyukov <dvyukov@google.com> | 2013-05-28 21:10:10 +0400 |
| commit | 081129e286fcda2c9525dd08bd90ff6883df0698 (patch) | |
| tree | cf4796afa58ed6a03d82b5d46dd67b2f996e1d7d /src/pkg/runtime/runtime.h | |
| parent | 4d6bfcf24504bb2de0bf63bf43ad703ba808a3e9 (diff) | |
| download | go-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.h | 1 |
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); |
