Signed-off-by: John Howard <jhoward@microsoft.com> This is the maintained version of boltdb, which includes the Windows-specific fix detailed in https://github.com/etcd-io/bbolt/pull/122
		
			
				
	
	
		
			9 lines
		
	
	
		
			170 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			170 B
		
	
	
	
		
			Go
		
	
	
	
	
	
// +build !windows,!plan9,!linux,!openbsd
 | 
						|
 | 
						|
package bbolt
 | 
						|
 | 
						|
// fdatasync flushes written data to a file descriptor.
 | 
						|
func fdatasync(db *DB) error {
 | 
						|
	return db.file.Sync()
 | 
						|
}
 |