diff options
| author | Shenghou Ma <minux.ma@gmail.com> | 2012-01-19 17:13:33 -0500 |
|---|---|---|
| committer | Russ Cox <rsc@golang.org> | 2012-01-19 17:13:33 -0500 |
| commit | fec7aa952f37ad5aa2cfdfe44bdc0e7a02fe8783 (patch) | |
| tree | 6bb72559f5a54cf6217257a133f790dd3ebdc86c /src/pkg/runtime/runtime.h | |
| parent | 7b07310a698bec952fa5f1b9ca64cc92c5de6f0e (diff) | |
| download | go-fec7aa952f37ad5aa2cfdfe44bdc0e7a02fe8783.tar.xz | |
doc: update out-of-date comments about runtime/cgo
R=golang-dev, rsc
CC=golang-dev
https://golang.org/cl/5532100
Diffstat (limited to 'src/pkg/runtime/runtime.h')
| -rw-r--r-- | src/pkg/runtime/runtime.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pkg/runtime/runtime.h b/src/pkg/runtime/runtime.h index 7f1cb59eb5..dc54285c72 100644 --- a/src/pkg/runtime/runtime.h +++ b/src/pkg/runtime/runtime.h @@ -168,8 +168,8 @@ struct Gobuf }; struct G { - byte* stackguard; // cannot move - also known to linker, libmach, libcgo - byte* stackbase; // cannot move - also known to libmach, libcgo + byte* stackguard; // cannot move - also known to linker, libmach, runtime/cgo + byte* stackbase; // cannot move - also known to libmach, runtime/cgo Defer* defer; Panic* panic; Gobuf sched; |
