diff options
| author | Josh Bleecher Snyder <josharian@gmail.com> | 2014-08-22 08:41:32 -0700 |
|---|---|---|
| committer | Josh Bleecher Snyder <josharian@gmail.com> | 2014-08-22 08:41:32 -0700 |
| commit | 0be59730fd9339f9c79601ce19a5323828e634c3 (patch) | |
| tree | 0b1c8254ea030d1908e40f4c09af9fc3aa0a1366 /src/pkg/runtime/runtime.h | |
| parent | 3d3d5390834629a73b745900eb1a0aeda94d927d (diff) | |
| download | go-0be59730fd9339f9c79601ce19a5323828e634c3.tar.xz | |
runtime: add Go symtab implementation
LGTM=khr
R=khr, dvyukov, dave
CC=golang-codereviews, rsc
https://golang.org/cl/124300044
Diffstat (limited to 'src/pkg/runtime/runtime.h')
| -rw-r--r-- | src/pkg/runtime/runtime.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/runtime/runtime.h b/src/pkg/runtime/runtime.h index 2c004b4eab..d38eb454b7 100644 --- a/src/pkg/runtime/runtime.h +++ b/src/pkg/runtime/runtime.h @@ -447,7 +447,7 @@ enum // Layout of in-memory per-function information prepared by linker // See http://golang.org/s/go12symtab. // Keep in sync with linker and with ../../libmach/sym.c -// and with package debug/gosym. +// and with package debug/gosym and with symtab.go in package runtime. struct Func { uintptr entry; // start pc |
