diff options
| author | Russ Cox <rsc@golang.org> | 2013-02-21 17:01:13 -0500 |
|---|---|---|
| committer | Russ Cox <rsc@golang.org> | 2013-02-21 17:01:13 -0500 |
| commit | 1903ad71891eb0b7b79b83145bf16b4a85dead54 (patch) | |
| tree | 227f90007ce38f2cb27a49343bb5880848856a11 /src/pkg/runtime/malloc.h | |
| parent | 4335e69af64b96cd69fa876c5157d6caebde23a6 (diff) | |
| download | go-1903ad71891eb0b7b79b83145bf16b4a85dead54.tar.xz | |
cmd/gc, reflect, runtime: switch to indirect func value representation
Step 1 of http://golang.org/s/go11func.
R=golang-dev, r, daniel.morsing, remyoudompheng
CC=golang-dev
https://golang.org/cl/7393045
Diffstat (limited to 'src/pkg/runtime/malloc.h')
| -rw-r--r-- | src/pkg/runtime/malloc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/runtime/malloc.h b/src/pkg/runtime/malloc.h index 5874741e17..c795a6fd5b 100644 --- a/src/pkg/runtime/malloc.h +++ b/src/pkg/runtime/malloc.h @@ -474,7 +474,7 @@ int32 runtime·gcprocs(void); void runtime·helpgc(int32 nproc); void runtime·gchelper(void); -bool runtime·getfinalizer(void *p, bool del, void (**fn)(void*), uintptr *nret); +bool runtime·getfinalizer(void *p, bool del, FuncVal **fn, uintptr *nret); void runtime·walkfintab(void (*fn)(void*)); enum |
