github.com/cockroachdb/pebble@v1.1.2/vfs/fadvise_generic.go (about) 1 // Copyright 2019 The LevelDB-Go and Pebble Authors. All rights reserved. Use 2 // of this source code is governed by a BSD-style license that can be found in 3 // the LICENSE file. 4 5 //go:build !linux 6 // +build !linux 7 8 package vfs 9 10 func fadviseRandom(f uintptr) error { 11 return nil 12 } 13 14 func fadviseSequential(f uintptr) error { 15 return nil 16 }