mirror of
https://github.com/ii64/gouring.git
synced 2024-11-21 22:46:22 +01:00
Nugraha
7eedf9754b
There's other adjustment/addition: * Function name CQE/SQE renamed to Cqe/Sqe. * SQ entry union sets value withput util to reduce function complexity, so leaving function budget for another stuff. * UserData has its own type, implement for uint64, uintptr, and unsafe. * TODO: decide what to use `Syscall` or `RawSyscall`. * Exposed `SeenCqe`. * Ignore *.test file extension. * Inline cost tool. Signed-off-by: Nugraha <richiisei@gmail.com>
9 lines
137 B
Go
9 lines
137 B
Go
package gouring
|
|
|
|
const (
|
|
// uring syscall no.
|
|
|
|
SYS_IO_URING_SETUP = 425
|
|
SYS_IO_URING_ENTER = 426
|
|
SYS_IO_URING_REGISTER = 427
|
|
)
|