Age | Commit message (Collapse) | Author | Lines | |
---|---|---|---|---|
2019-03-11 | Defined the (*ioctl)() commands as unsigned int (#381) | Jean-Pierre André | -1/+1 | |
Instead of the Posix ioctl(2) command, Linux uses its own variant of ioctl() in which the commands are requested as "unsigned long" and truncated to 32 bits by the fuse kernel module. Transmitting the commands to user space file systems as "unsigned int" is a workaround for processing ioctl() commands which do not fit into a signed int. | ||||
2017-09-25 | Removed unneccessary #include <config.h> from examples | Nikolaus Rath | -2/+0 | |
Fixes: #208. | ||||
2017-07-08 | Added public fuse_lib_help(), bumped minor version | Nikolaus Rath | -1/+1 | |
2016-10-28 | Clean-up doxygen documentation | Nikolaus Rath | -3/+3 | |
Fixes: #81. | ||||
2016-10-15 | Pass fuse_file_info to getattr, chown, chmod, truncate, utimens handlers | Nikolaus Rath | -2/+6 | |
This obsoletes the ftruncate & fgetattr handlers. Fixes #58. | ||||
2016-10-09 | Renamed ioctl and poll examples | Nikolaus Rath | -0/+228 | |
The new names should make it more obvious at first glance what each example demonstrates. |