datasync_unsupported.go

 1//go:build !linux
 2
 3package sysfs
 4
 5import (
 6	"os"
 7
 8	"github.com/tetratelabs/wazero/experimental/sys"
 9)
10
11func datasync(f *os.File) sys.Errno {
12	// Attempt to sync everything, even if we only need to sync the data.
13	return fsync(f)
14}