12 lines
293 B
Go
12 lines
293 B
Go
package uring
|
|
|
|
import "runtime"
|
|
|
|
// This file contains code shared across all platforms.
|
|
|
|
// Available reports whether io_uring is available on this machine.
|
|
// If Available reports false, no other package uring APIs should be called.
|
|
func Available() bool {
|
|
return runtime.GOOS == "linux"
|
|
}
|