您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

boltsync_unix.go 170B

12345678
  1. // +build !windows,!plan9,!linux,!openbsd
  2. package bbolt
  3. // fdatasync flushes written data to a file descriptor.
  4. func fdatasync(db *DB) error {
  5. return db.file.Sync()
  6. }