perkeep/vendor/bazil.org/fuse
mpl d76959dd7c vendor: update bazil.org/fuse
To rev b3d5a5514a27076c63844bde6d60703a7aea4adc

Fixes #821

Change-Id: I3d492cd743a293ffa3e78a042ea28060c9840bb6
2016-07-20 16:09:08 +02:00
..
doc
examples
fs vendor: update bazil.org/fuse 2016-07-20 16:09:08 +02:00
fuseutil
syscallx
.gitattributes
.gitignore
LICENSE
README.md
buffer.go
debug.go
error_darwin.go
error_freebsd.go
error_linux.go
error_std.go
fuse.go vendor: update bazil.org/fuse 2016-07-20 16:09:08 +02:00
fuse_darwin.go vendor: update bazil.org/fuse 2016-07-20 16:09:08 +02:00
fuse_freebsd.go vendor: update bazil.org/fuse 2016-07-20 16:09:08 +02:00
fuse_kernel.go vendor: update bazil.org/fuse 2016-07-20 16:09:08 +02:00
fuse_kernel_darwin.go
fuse_kernel_freebsd.go
fuse_kernel_linux.go
fuse_kernel_std.go
fuse_kernel_test.go
fuse_linux.go vendor: update bazil.org/fuse 2016-07-20 16:09:08 +02:00
mount.go
mount_darwin.go vendor: update bazil.org/fuse 2016-07-20 16:09:08 +02:00
mount_freebsd.go
mount_linux.go
options.go vendor: update bazil.org/fuse 2016-07-20 16:09:08 +02:00
options_daemon_timeout_test.go vendor: update bazil.org/fuse 2016-07-20 16:09:08 +02:00
options_darwin.go vendor: update bazil.org/fuse 2016-07-20 16:09:08 +02:00
options_freebsd.go vendor: update bazil.org/fuse 2016-07-20 16:09:08 +02:00
options_helper_test.go
options_linux.go vendor: update bazil.org/fuse 2016-07-20 16:09:08 +02:00
options_nocomma_test.go
options_test.go vendor: update bazil.org/fuse 2016-07-20 16:09:08 +02:00
protocol.go
unmount.go
unmount_linux.go
unmount_std.go

README.md

bazil.org/fuse -- Filesystems in Go

bazil.org/fuse is a Go library for writing FUSE userspace filesystems.

It is a from-scratch implementation of the kernel-userspace communication protocol, and does not use the C library from the project called FUSE. bazil.org/fuse embraces Go fully for safety and ease of programming.

Heres how to get going:

go get bazil.org/fuse

Website: http://bazil.org/fuse/

Github repository: https://github.com/bazil/fuse

API docs: http://godoc.org/bazil.org/fuse

Our thanks to Russ Cox for his fuse library, which this project is based on.