prometheus/pages/pages_linux.go

11 lines
177 B
Go
Raw Normal View History

2016-11-15 06:53:48 -08:00
package pages
import (
"syscall"
)
// fdatasync flushes written data to a file descriptor.
func fdatasync(pb *Pagebuf) error {
return syscall.Fdatasync(int(pb.file.Fd()))
}