mirror of
https://github.com/donl/gPanel.git
synced 2026-06-30 06:12:06 -06:00
8 lines
169 B
Go
8 lines
169 B
Go
// +build !windows,!plan9,!linux,!openbsd
|
|
|
|
package bolt
|
|
|
|
// fdatasync flushes written data to a file descriptor.
|
|
func fdatasync(db *DB) error {
|
|
return db.file.Sync()
|
|
}
|