all: replace fn name '@xxx' with 'xxx' (#22506)

This commit is contained in:
yuyi 2024-10-13 03:17:02 +08:00 committed by GitHub
parent 45fd7ebcde
commit da3112e545
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
40 changed files with 141 additions and 141 deletions

View file

@ -68,7 +68,7 @@ fn (mut pv Picoev) poll_once(max_wait_in_sec int) int {
tv_sec: u64(max_wait_in_sec)
tv_usec: 0
}
r := C.@select(maxfd + 1, &readfds, &writefds, &errorfds, &tv)
r := C.select(maxfd + 1, &readfds, &writefds, &errorfds, &tv)
if r == -1 {
// timeout
return -1