@@ -23,23 +23,23 @@ const (
23
23
24
24
//go:linkname poll_runtime_pollReset internal/poll.runtime_pollReset
25
25
func 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)
27
27
return pollNoError
28
28
}
29
29
30
30
//go:linkname poll_runtime_pollWait internal/poll.runtime_pollWait
31
31
func 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)
33
33
return pollNoError
34
34
}
35
35
36
36
//go:linkname poll_runtime_pollSetDeadline internal/poll.runtime_pollSetDeadline
37
37
func 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)
39
39
}
40
40
41
41
//go:linkname poll_runtime_pollOpen internal/poll.runtime_pollOpen
42
42
func poll_runtime_pollOpen (fd uintptr ) (* pollDesc , int ) {
43
- println ("poll_runtime_pollOpen not implemented" , fd )
43
+ // println("poll_runtime_pollOpen not implemented", fd)
44
44
return & pollDesc {runtimeCtx : 0x13371337 }, pollNoError
45
45
}
0 commit comments