From d968b4ddaeead5296b31f5c02f4f0e966372390a Mon Sep 17 00:00:00 2001 From: Nikolaus Rath Date: Sun, 2 Oct 2016 21:20:44 -0700 Subject: [PATCH] Extended per-file comments. This should make more clear what file contains code for what purpose. --- lib/buffer.c | 3 +++ lib/fuse.c | 3 +++ lib/fuse_loop.c | 2 ++ lib/fuse_loop_mt.c | 2 ++ lib/fuse_lowlevel.c | 3 +++ lib/fuse_opt.c | 3 +++ lib/fuse_signals.c | 2 ++ lib/mount.c | 2 ++ lib/mount_bsd.c | 2 ++ lib/mount_util.c | 2 ++ 10 files changed, 24 insertions(+) mode change 100755 => 100644 lib/fuse_loop_mt.c mode change 100755 => 100644 lib/fuse_lowlevel.c mode change 100755 => 100644 lib/fuse_signals.c diff --git a/lib/buffer.c b/lib/buffer.c index 17a595c..85309ac 100644 --- a/lib/buffer.c +++ b/lib/buffer.c @@ -2,6 +2,9 @@ FUSE: Filesystem in Userspace Copyright (C) 2010 Miklos Szeredi + Functions for dealing with `struct fuse_buf` and `struct + fuse_bufvec`. + This program can be distributed under the terms of the GNU LGPLv2. See the file COPYING.LIB */ diff --git a/lib/fuse.c b/lib/fuse.c index 0414f6b..efe32fb 100644 --- a/lib/fuse.c +++ b/lib/fuse.c @@ -2,6 +2,9 @@ FUSE: Filesystem in Userspace Copyright (C) 2001-2007 Miklos Szeredi + Implementation of the high-level FUSE API on top of the low-level + API. + This program can be distributed under the terms of the GNU LGPLv2. See the file COPYING.LIB */ diff --git a/lib/fuse_loop.c b/lib/fuse_loop.c index 6df4a62..8414284 100644 --- a/lib/fuse_loop.c +++ b/lib/fuse_loop.c @@ -2,6 +2,8 @@ FUSE: Filesystem in Userspace Copyright (C) 2001-2007 Miklos Szeredi + Implementation of the single-threaded FUSE session loop. + This program can be distributed under the terms of the GNU LGPLv2. See the file COPYING.LIB */ diff --git a/lib/fuse_loop_mt.c b/lib/fuse_loop_mt.c old mode 100755 new mode 100644 index f482962..1d9a5f0 --- a/lib/fuse_loop_mt.c +++ b/lib/fuse_loop_mt.c @@ -2,6 +2,8 @@ FUSE: Filesystem in Userspace Copyright (C) 2001-2007 Miklos Szeredi + Implementation of the multi-threaded FUSE session loop. + This program can be distributed under the terms of the GNU LGPLv2. See the file COPYING.LIB. */ diff --git a/lib/fuse_lowlevel.c b/lib/fuse_lowlevel.c old mode 100755 new mode 100644 index 2597c39..8ccc733 --- a/lib/fuse_lowlevel.c +++ b/lib/fuse_lowlevel.c @@ -2,6 +2,9 @@ FUSE: Filesystem in Userspace Copyright (C) 2001-2007 Miklos Szeredi + Implementation of (most of) the low-level FUSE API. The session loop + functions are implemented in separate files. + This program can be distributed under the terms of the GNU LGPLv2. See the file COPYING.LIB */ diff --git a/lib/fuse_opt.c b/lib/fuse_opt.c index bd7a6ee..3d4a3dd 100644 --- a/lib/fuse_opt.c +++ b/lib/fuse_opt.c @@ -2,6 +2,9 @@ FUSE: Filesystem in Userspace Copyright (C) 2001-2007 Miklos Szeredi + Implementation of option parsing routines (dealing with `struct + fuse_args`). + This program can be distributed under the terms of the GNU LGPLv2. See the file COPYING.LIB */ diff --git a/lib/fuse_signals.c b/lib/fuse_signals.c old mode 100755 new mode 100644 index 9fa787c..2261b7b --- a/lib/fuse_signals.c +++ b/lib/fuse_signals.c @@ -2,6 +2,8 @@ FUSE: Filesystem in Userspace Copyright (C) 2001-2007 Miklos Szeredi + Utility functions for setting signal handlers. + This program can be distributed under the terms of the GNU LGPLv2. See the file COPYING.LIB */ diff --git a/lib/mount.c b/lib/mount.c index 5001095..5c892f6 100644 --- a/lib/mount.c +++ b/lib/mount.c @@ -2,6 +2,8 @@ FUSE: Filesystem in Userspace Copyright (C) 2001-2007 Miklos Szeredi + Architecture specific file system mounting (Linux). + This program can be distributed under the terms of the GNU LGPLv2. See the file COPYING.LIB. */ diff --git a/lib/mount_bsd.c b/lib/mount_bsd.c index 4dce8c4..4703d94 100644 --- a/lib/mount_bsd.c +++ b/lib/mount_bsd.c @@ -2,6 +2,8 @@ FUSE: Filesystem in Userspace Copyright (C) 2005-2008 Csaba Henk + Architecture specific file system mounting (FreeBSD). + This program can be distributed under the terms of the GNU LGPLv2. See the file COPYING.LIB. */ diff --git a/lib/mount_util.c b/lib/mount_util.c index ad9d38c..a23ab0b 100644 --- a/lib/mount_util.c +++ b/lib/mount_util.c @@ -2,6 +2,8 @@ FUSE: Filesystem in Userspace Copyright (C) 2001-2007 Miklos Szeredi + Architecture-independent mounting code. + This program can be distributed under the terms of the GNU LGPLv2. See the file COPYING.LIB. */ -- 2.30.2