Files
tailscale/net/uring/io_uring_test.go
kadmin 07374071d0 net/uring: add probing capability
Adds the ability to probe for various capabilities. It will not call into C unless
necessary. It also allocates one probe per call to new capability, which may be expensive, so in
theory they could be reused instead.

Signed-off-by: kadmin <julianknodt@gmail.com>
2021-07-13 15:15:16 -07:00

12 lines
115 B
Go

// +build linux
package uring
import (
"testing"
)
func TestUringAvailable(t *testing.T) {
uringSupported()
}