Skip to content

Commit

Permalink
remove print statements for cleaner execution
Browse files Browse the repository at this point in the history
Signed-off-by: leongross <[email protected]>
  • Loading branch information
leongross committed Sep 11, 2024
1 parent 5794661 commit 67b14a0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/runtime/netpoll.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,23 +23,23 @@ const (

//go:linkname poll_runtime_pollReset internal/poll.runtime_pollReset
func poll_runtime_pollReset(pd *pollDesc, mode int) int {
println("poll_runtime_pollReset not implemented", pd, mode)
// println("poll_runtime_pollReset not implemented", pd, mode)
return pollNoError
}

//go:linkname poll_runtime_pollWait internal/poll.runtime_pollWait
func poll_runtime_pollWait(pd *pollDesc, mode int) int {
println("poll_runtime_pollWait not implemented", pd, mode)
// println("poll_runtime_pollWait not implemented", pd, mode)
return pollNoError
}

//go:linkname poll_runtime_pollSetDeadline internal/poll.runtime_pollSetDeadline
func poll_runtime_pollSetDeadline(pd *pollDesc, d int64, mode int) {
println("poll_runtime_pollSetDeadline not implemented", pd, d, mode)
// println("poll_runtime_pollSetDeadline not implemented", pd, d, mode)
}

//go:linkname poll_runtime_pollOpen internal/poll.runtime_pollOpen
func poll_runtime_pollOpen(fd uintptr) (*pollDesc, int) {
println("poll_runtime_pollOpen not implemented", fd)
// println("poll_runtime_pollOpen not implemented", fd)
return &pollDesc{runtimeCtx: 0x13371337}, pollNoError
}

0 comments on commit 67b14a0

Please sign in to comment.