diff options
author | Miklos Szeredi <miklos@szeredi.hu> | 2008-08-21 17:38:33 +0000 |
---|---|---|
committer | Miklos Szeredi <miklos@szeredi.hu> | 2008-08-21 17:38:33 +0000 |
commit | 78e42c17a69736ff19ae3a6a198bbd2bbee01202 (patch) | |
tree | 428631cee8116cf7519a0fd1cab4d87753be78ec | |
parent | 16d1d9656a00628af4607c1a8cc3dff85474fd74 (diff) | |
download | fuse-78e42c17a69736ff19ae3a6a198bbd2bbee01202.tar.gz |
API documentation update by Daniel Benamy
-rw-r--r-- | include/fuse.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/fuse.h b/include/fuse.h index 07b662e..409851a 100644 --- a/include/fuse.h +++ b/include/fuse.h @@ -75,6 +75,11 @@ typedef int (*fuse_dirfil_t) (fuse_dirh_t h, const char *name, int type, * releasedir, fsyncdir, access, create, ftruncate, fgetattr, lock, * init and destroy are special purpose methods, without which a full * featured filesystem can still be implemented. + * + * Almost all operations take a path which can be of any length. + * + * Changed in fuse 2.8.0 (regardless of API version) + * Previously, paths were limited to a length of PATH_MAX. */ struct fuse_operations { /** Get file attributes. |