diff options
author | Bernd Schubert <bschubert@ddn.com> | 2022-04-11 12:02:54 +0200 |
---|---|---|
committer | Nikolaus Rath <Nikolaus@rath.org> | 2022-09-04 13:07:15 +0100 |
commit | d823cab63ad61a5b9ba09e6f4ccfd246572cd5e3 (patch) | |
tree | 18a3b2e6c570fb4312ad7f3488d90f7305de48e1 /include/fuse.h | |
parent | af5710e7a3ad42e1b64ee8882fd72b22ffe271ac (diff) | |
download | libfuse-d823cab63ad61a5b9ba09e6f4ccfd246572cd5e3.tar.gz |
fuse_session_loop_mt: Accept a NULL config - use defaults
If an application does not want to bother with the session
and wants to keep defaults, it can now just pass a NULL
as config parameter.
Diffstat (limited to 'include/fuse.h')
-rw-r--r-- | include/fuse.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/fuse.h b/include/fuse.h index 917a91c..9897c85 100644 --- a/include/fuse.h +++ b/include/fuse.h @@ -1041,7 +1041,7 @@ int fuse_loop_mt_32(struct fuse *f, struct fuse_loop_config *config); * in the callback function of fuse_operations is also thread-safe. * * @param f the FUSE handle - * @param config loop configuration + * @param config loop configuration, may be NULL and defaults will be used then * @return see fuse_session_loop() * * See also: fuse_loop() |