syscall-table-go Generate Linux Kernel Syscall Table Via Github Action
package main
import (
st "github.com/detailyang/syscall-table-go"
"fmt"
)
func main() {
for k,v := range st.Table {
fmt.Println(k, v)
}
}
syscall-table-go Generate Linux Kernel Syscall Table Via Github Action
package main
import (
st "github.com/detailyang/syscall-table-go"
"fmt"
)
func main() {
for k,v := range st.Table {
fmt.Println(k, v)
}
}