1
0
Fork 0
mirror of https://github.com/ii64/gouring.git synced 2025-04-01 03:41:44 +02:00

add arm64 syscall numbers

This commit is contained in:
Clayton Stangeland 2023-03-10 07:58:32 -06:00
parent 4937c09d11
commit 903830b292

9
syscall_nr_arm64.go Normal file
View file

@ -0,0 +1,9 @@
package gouring
const (
// uring syscall no.
SYS_IO_URING_SETUP = 425
SYS_IO_URING_ENTER = 426
SYS_IO_URING_REGISTER = 427
)