mirror of
https://github.com/containers/podman.git
synced 2025-10-13 01:06:10 +08:00
9 lines
180 B
Go
9 lines
180 B
Go
//go:build !windows && !plan9 && !linux && !openbsd
|
|
|
|
package bbolt
|
|
|
|
// fdatasync flushes written data to a file descriptor.
|
|
func fdatasync(db *DB) error {
|
|
return db.file.Sync()
|
|
}
|