aboutsummaryrefslogtreecommitdiff
path: root/example/fioclient.c
Commit message (Collapse)AuthorAge
* Fixed permissions of source files.Gravatar Nikolaus Rath2016-10-02
|
* Fix ioctl exampleGravatar Nikolaus Rath2016-05-13
| | | | Fixes issue #39.
* libfuse: remove "-D_FILE_OFFSET_BITS=64" from fuse.pcGravatar Miklos Szeredi2013-07-24
| | | | add AC_SYS_LARGEFILE to your configure.ac instead.
* - added a doxygen main pageGravatar Joachim Schiele2013-06-20
| | | | | | - modified all examples to be included in doxygen - modified the API documentation to have more details - added the 490px_FUSE_structure.svg.png (c) wikipedia
* cleaning up warningsGravatar Reuben Hawkins2011-05-23
| | | | | | | | | fprintf(stderr, whatever); -> fprintf(stderr, "%s", whatever); checking return values on chdir and lockf where we weren't already modified: example/cusexmp.c modified: example/fioclient.c modified: util/fusermount.c
* CUSE patches from Tejun HeoGravatar Miklos Szeredi2009-06-18
|
* * Implement ioctl support. On high level interface onlyGravatar Miklos Szeredi2008-12-05
"restricted" ioctls are supported (which are defined with the _IO(), _IOR(), _IOW() or _IOWR() macros). Unrestricted ioctls will only be allwed to CUSE (Character Device in Userspace) servers. Patch by Tejun Heo