添加依赖库

This commit is contained in:
lifei6671
2017-04-29 22:06:11 +08:00
parent ae8f4532f6
commit d38417535a
477 changed files with 177332 additions and 9 deletions

10
vendor/github.com/boltdb/bolt/bolt_linux.go generated vendored Normal file
View File

@@ -0,0 +1,10 @@
package bolt
import (
"syscall"
)
// fdatasync flushes written data to a file descriptor.
func fdatasync(db *DB) error {
return syscall.Fdatasync(int(db.file.Fd()))
}