aboutsummaryrefslogtreecommitdiffstats
path: root/example/fioclient.c
AgeCommit message (Collapse)AuthorLines
2016-10-09Renamed ioctl and poll examplesNikolaus Rath-72/+0
The new names should make it more obvious at first glance what each example demonstrates.
2016-10-02Fixed permissions of source files.Nikolaus Rath-0/+0
2016-05-13Fix ioctl exampleNikolaus Rath-83/+19
Fixes issue #39.
2013-07-24libfuse: remove "-D_FILE_OFFSET_BITS=64" from fuse.pcMiklos Szeredi-0/+1
add AC_SYS_LARGEFILE to your configure.ac instead.
2013-06-20- added a doxygen main pageJoachim Schiele-2/+15
- 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
2011-05-23cleaning up warningsReuben Hawkins-1/+1
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
2009-06-18CUSE patches from Tejun HeoMiklos Szeredi-21/+77
2008-12-05* Implement ioctl support. On high level interface onlyMiklos Szeredi-0/+66
"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