diff options
| author | Aram Hăvărneanu <aram@mgk.ro> | 2014-02-24 22:31:01 -0500 |
|---|---|---|
| committer | Russ Cox <rsc@golang.org> | 2014-02-24 22:31:01 -0500 |
| commit | 50df1364838445164d29c1e16b7077437b04b537 (patch) | |
| tree | 1f2b1cb13f90e36acce4e29b10b486ef6f23eec4 /src/pkg/runtime/runtime.h | |
| parent | c738591e7e9b3ed9804c1a1348ccf7c7c596b8c3 (diff) | |
| download | go-50df1364838445164d29c1e16b7077437b04b537.tar.xz | |
runtime, net: add support for GOOS=solaris
LGTM=dave, rsc
R=golang-codereviews, minux.ma, mikioh.mikioh, dave, iant, rsc
CC=golang-codereviews
https://golang.org/cl/36030043
Diffstat (limited to 'src/pkg/runtime/runtime.h')
| -rw-r--r-- | src/pkg/runtime/runtime.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/pkg/runtime/runtime.h b/src/pkg/runtime/runtime.h index 8d07294e81..c9887b6637 100644 --- a/src/pkg/runtime/runtime.h +++ b/src/pkg/runtime/runtime.h @@ -919,7 +919,8 @@ int32 runtime·netpollopen(uintptr, PollDesc*); int32 runtime·netpollclose(uintptr); void runtime·netpollready(G**, PollDesc*, int32); uintptr runtime·netpollfd(PollDesc*); -void runtime·netpollarm(uintptr, int32); +void runtime·netpollarm(PollDesc*, int32); +void** runtime·netpolluser(PollDesc*); void runtime·crash(void); void runtime·parsedebugvars(void); void _rt0_go(void); |
