github.com/zuoyebang/bitalostable@v1.0.1-0.20240229032404-e3b99a834294/vfs/syncing_file_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 || arm
     6  // +build !linux arm
     7  
     8  package vfs
     9  
    10  func (f *syncingFile) init() {
    11  	f.syncTo = f.syncToGeneric
    12  }
    13  
    14  func (f *syncingFile) syncToGeneric(_ int64) error {
    15  	return f.Sync()
    16  }