aboutsummaryrefslogtreecommitdiffstats
path: root/example/fioclient.c
AgeCommit message (Collapse)AuthorLines
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