mirror of
https://github.com/ncruces/go-sqlite3.git
synced 2026-01-12 14:09:13 +00:00
12 lines
250 B
Go
12 lines
250 B
Go
//go:build !(darwin || linux) || !(amd64 || arm64 || riscv64) || sqlite3_flock || sqlite3_noshm || sqlite3_nosys
|
|
|
|
package util
|
|
|
|
import "context"
|
|
|
|
type mmapState struct{}
|
|
|
|
func withMmappedAllocator(ctx context.Context) context.Context {
|
|
return ctx
|
|
}
|