mirror of
https://github.com/ii64/gouring.git
synced 2025-04-03 12:35:52 +02:00
13 lines
244 B
Go
13 lines
244 B
Go
package gouring
|
|
|
|
// Option
|
|
type Option func(p *IOUringParams)
|
|
|
|
// SQThread option
|
|
func SQThread(cpu, idleMS uint32) Option {
|
|
return func(p *IOUringParams) {
|
|
p.SQThreadCPU = cpu
|
|
p.SQThreadIdle = idleMS
|
|
p.Flags |= IORING_SETUP_SQPOLL
|
|
}
|
|
}
|