summaryrefslogtreecommitdiffhomepage
path: root/pkg/tcpip/link/rawfile/blockingpoll_amd64.s
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/tcpip/link/rawfile/blockingpoll_amd64.s')
-rw-r--r--pkg/tcpip/link/rawfile/blockingpoll_amd64.s6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkg/tcpip/link/rawfile/blockingpoll_amd64.s b/pkg/tcpip/link/rawfile/blockingpoll_amd64.s
index 63b8c4451..8e22ba661 100644
--- a/pkg/tcpip/link/rawfile/blockingpoll_amd64.s
+++ b/pkg/tcpip/link/rawfile/blockingpoll_amd64.s
@@ -20,7 +20,7 @@
//
// func blockingPoll(fds *pollEvent, nfds int, timeout int64) (n int, err syscall.Errno)
TEXT ·blockingPoll(SB),NOSPLIT,$0-40
- CALL runtime·entersyscallblock(SB)
+ CALL ·callEntersyscallblock(SB)
MOVQ fds+0(FP), DI
MOVQ nfds+8(FP), SI
MOVQ timeout+16(FP), DX
@@ -31,10 +31,10 @@ TEXT ·blockingPoll(SB),NOSPLIT,$0-40
MOVQ $-1, n+24(FP)
NEGQ AX
MOVQ AX, err+32(FP)
- CALL runtime·exitsyscall(SB)
+ CALL ·callExitsyscall(SB)
RET
ok:
MOVQ AX, n+24(FP)
MOVQ $0, err+32(FP)
- CALL runtime·exitsyscall(SB)
+ CALL ·callExitsyscall(SB)
RET