mirror of
https://github.com/prometheus/prometheus.git
synced 2025-03-05 20:59:13 -08:00
9 lines
170 B
Go
9 lines
170 B
Go
|
// +build !windows,!plan9,!linux,!openbsd
|
||
|
|
||
|
package pages
|
||
|
|
||
|
// fdatasync flushes written data to a file descriptor.
|
||
|
func fdatasync(pb *DB) error {
|
||
|
return pb.file.Sync()
|
||
|
}
|