@@ -23,23 +23,23 @@ const (
2323
2424//go:linkname poll_runtime_pollReset internal/poll.runtime_pollReset
2525func poll_runtime_pollReset (pd * pollDesc , mode int ) int {
26- println ("poll_runtime_pollReset not implemented" , pd , mode )
26+ // println("poll_runtime_pollReset not implemented", pd, mode)
2727 return pollNoError
2828}
2929
3030//go:linkname poll_runtime_pollWait internal/poll.runtime_pollWait
3131func poll_runtime_pollWait (pd * pollDesc , mode int ) int {
32- println ("poll_runtime_pollWait not implemented" , pd , mode )
32+ // println("poll_runtime_pollWait not implemented", pd, mode)
3333 return pollNoError
3434}
3535
3636//go:linkname poll_runtime_pollSetDeadline internal/poll.runtime_pollSetDeadline
3737func poll_runtime_pollSetDeadline (pd * pollDesc , d int64 , mode int ) {
38- println ("poll_runtime_pollSetDeadline not implemented" , pd , d , mode )
38+ // println("poll_runtime_pollSetDeadline not implemented", pd, d, mode)
3939}
4040
4141//go:linkname poll_runtime_pollOpen internal/poll.runtime_pollOpen
4242func poll_runtime_pollOpen (fd uintptr ) (* pollDesc , int ) {
43- println ("poll_runtime_pollOpen not implemented" , fd )
43+ // println("poll_runtime_pollOpen not implemented", fd)
4444 return & pollDesc {runtimeCtx : 0x13371337 }, pollNoError
4545}
0 commit comments