aboutsummaryrefslogtreecommitdiffstats
path: root/example/invalidate_path.c
AgeCommit message (Collapse)AuthorLines
2025-06-27license: s/COPYING/GPL2.txt, s/COPYING.LIB/LGPL2.txtizxl007-1/+1
Signed-off-by: izxl007 <zeng.zheng@zte.com.cn>
2024-03-20Add FUSE_FILL_DIR_DEFAULTS enum (#903)FredyVia-2/+2
In order to use the fuse_fill_dir_t function in a C++ program, add the enum item: FUSE_FILL_DIR_DEFAULTS Without this change g++ compilation failed with example/hello.c:94:35: error: invalid conversion from ‘int’ to ‘fuse_fill_dir_flags’ [-fpermissive] 94 | filler(buf, ".", NULL, 0, 0); | ^ | | | int
2021-05-07Fix doxygen warnings. (#600)Junichi Uekawa-2/+2
Some parameters were undocumented, and @file does not mean to expand current file name.
2020-09-09Updated example code to work with new API (#547)AKowshik-3/+7
2020-03-13State GPL version in comment (#485)Dr. David Alan Gilbert-1/+1
IN a bunch of comments we say 'under the terms of the GNU GPL', make it clear this is GPLv2 (as LICENSE says). Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
2020-01-30examples: mark ops variables constant (#496)zsugabubus-1/+1
2017-09-25Removed unneccessary #include <config.h> from examplesNikolaus Rath-4/+0
Fixes: #208.
2017-08-24Renamed notify_inval_inode_fh to invalidate_pathNikolaus Rath-0/+292
The previous name didn't make much sense.