mirror of
https://github.com/asciinema/asciinema.git
synced 2025-12-16 11:48:13 +01:00
12 lines
213 B
Go
12 lines
213 B
Go
package util
|
|
|
|
import "syscall"
|
|
|
|
func FD_SET(p *syscall.FdSet, fd int) {
|
|
p.Bits[fd/32] |= 1 << uint(fd) % 32
|
|
}
|
|
|
|
func FD_ISSET(p *syscall.FdSet, fd int) bool {
|
|
return (p.Bits[fd/32] & (1 << uint(fd) % 32)) != 0
|
|
}
|