diff options
| author | Dmitriy Vyukov <dvyukov@google.com> | 2014-09-04 10:04:04 +0400 |
|---|---|---|
| committer | Dmitriy Vyukov <dvyukov@google.com> | 2014-09-04 10:04:04 +0400 |
| commit | 91a670d179ae5a0b91a498b4df9d5f088704dba0 (patch) | |
| tree | cbffc3393d970a3b4593de70d8333f0be8e22895 /src/pkg/runtime/sys_linux_amd64.s | |
| parent | dae803863978513a159b36822054126f042ff412 (diff) | |
| download | go-91a670d179ae5a0b91a498b4df9d5f088704dba0.tar.xz | |
runtime: convert netpoll to Go
The common code is converted, epoll and kqueue are converted.
Windows and solaris are still C.
LGTM=rsc
R=golang-codereviews, rsc, dave
CC=golang-codereviews, iant, khr, rsc
https://golang.org/cl/132910043
Diffstat (limited to 'src/pkg/runtime/sys_linux_amd64.s')
| -rw-r--r-- | src/pkg/runtime/sys_linux_amd64.s | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/runtime/sys_linux_amd64.s b/src/pkg/runtime/sys_linux_amd64.s index f263ef35ae..3ce6bfc905 100644 --- a/src/pkg/runtime/sys_linux_amd64.s +++ b/src/pkg/runtime/sys_linux_amd64.s @@ -378,7 +378,7 @@ TEXT runtime·epollcreate1(SB),NOSPLIT,$0 MOVL AX, ret+8(FP) RET -// int32 runtime·epollctl(int32 epfd, int32 op, int32 fd, EpollEvent *ev); +// func epollctl(epfd, op, fd int32, ev *epollEvent) int TEXT runtime·epollctl(SB),NOSPLIT,$0 MOVL epfd+0(FP), DI MOVL op+4(FP), SI |
