| Abhay Kumar | a61c522 | 2025-11-10 07:32:50 +0000 | [diff] [blame^] | 1 | package bbolt |
| 2 | |||||
| 3 | import ( | ||||
| 4 | "syscall" | ||||
| 5 | ) | ||||
| 6 | |||||
| 7 | // fdatasync flushes written data to a file descriptor. | ||||
| 8 | func fdatasync(db *DB) error { | ||||
| 9 | return syscall.Fdatasync(int(db.file.Fd())) | ||||
| 10 | } | ||||