diff options
| author | Carl Shapiro <cshapiro@google.com> | 2013-09-16 19:03:19 -0700 |
|---|---|---|
| committer | Carl Shapiro <cshapiro@google.com> | 2013-09-16 19:03:19 -0700 |
| commit | 16d6b6c77144bd26838d1cfd6631d159b419752b (patch) | |
| tree | 1de800054768fc5e7980ac1f1310797a11b43611 /src/pkg/runtime/runtime.h | |
| parent | 045dbeaf053f0c78941a11140e5a877237ccc489 (diff) | |
| download | go-16d6b6c77144bd26838d1cfd6631d159b419752b.tar.xz | |
runtime: export PCDATA value reader
This interface is required to use the PCDATA interface
implemented in Go 1.2. While initially entirely private, the
FUNCDATA side of the interface has been made public. This
change completes the FUNCDATA/PCDATA interface.
R=golang-dev, rsc
CC=golang-dev
https://golang.org/cl/13735043
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 920e86c312..66e87d5c27 100644 --- a/src/pkg/runtime/runtime.h +++ b/src/pkg/runtime/runtime.h @@ -802,6 +802,7 @@ int32 runtime·funcline(Func*, uintptr, String*); int32 runtime·funcarglen(Func*, uintptr); int32 runtime·funcspdelta(Func*, uintptr); int8* runtime·funcname(Func*); +int32 runtime·pcdatavalue(Func*, int32, uintptr); void* runtime·stackalloc(uint32); void runtime·stackfree(void*, uintptr); MCache* runtime·allocmcache(void); |
