1
0
Fork 0
mirror of https://github.com/ii64/gouring.git synced 2025-04-24 21:11:46 +02:00
gouring/sigset.go

17 lines
269 B
Go

package gouring
import (
"unsafe"
"golang.org/x/sys/unix"
)
const (
SizeofUint64 = unsafe.Sizeof(uint64(0))
SIGSET_NWORDS = (1024 / (8 * SizeofUint64))
SIGTMIN = 32
SIGTMAX = SIGTMIN
NSIG = (SIGTMAX + 1)
)
type Sigset_t = unix.Sigset_t