mirror of
https://github.com/go-gitea/gitea
synced 2024-10-31 16:53:25 +01:00
9 lines
169 B
Go
9 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()
|
||
|
}
|