aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xexample/hello.c2
-rwxr-xr-xexample/hello_ll.c6
-rwxr-xr-x[-rw-r--r--]lib/fuse_lowlevel.c0
-rwxr-xr-x[-rw-r--r--]lib/fuse_signals.c4
4 files changed, 6 insertions, 6 deletions
diff --git a/example/hello.c b/example/hello.c
index c8b4a48..580bff2 100755
--- a/example/hello.c
+++ b/example/hello.c
@@ -10,7 +10,7 @@
*
* hello.c - minimal FUSE example featuring fuse_main usage
*
-* \section section_compile compiling this example
+ * \section section_compile compiling this example
*
* gcc -Wall hello.c `pkg-config fuse --cflags --libs` -o hello
*
diff --git a/example/hello_ll.c b/example/hello_ll.c
index 687c6f1..06c881b 100755
--- a/example/hello_ll.c
+++ b/example/hello_ll.c
@@ -180,7 +180,7 @@ static struct fuse_lowlevel_ops hello_ll_oper = {
.read = hello_ll_read,
};
-//! [doxygen_fuse_lowlevel_usage]
+/*! [doxygen_fuse_lowlevel_usage] */
int main(int argc, char *argv[])
{
struct fuse_args args = FUSE_ARGS_INIT(argc, argv);
@@ -197,7 +197,7 @@ int main(int argc, char *argv[])
if (fuse_set_signal_handlers(se) != -1) {
fuse_session_add_chan(se, ch);
- // fuse_session_loop(..) blocks until ctrl+c or fusermount -u
+ /* fuse_session_loop(..) blocks until ctrl+c or fusermount -u */
err = fuse_session_loop(se);
fuse_remove_signal_handlers(se);
@@ -211,4 +211,4 @@ int main(int argc, char *argv[])
return err ? 1 : 0;
}
-//! [doxygen_fuse_lowlevel_usage]
+/*! [doxygen_fuse_lowlevel_usage] */
diff --git a/lib/fuse_lowlevel.c b/lib/fuse_lowlevel.c
index 45cd5f3..45cd5f3 100644..100755
--- a/lib/fuse_lowlevel.c
+++ b/lib/fuse_lowlevel.c
diff --git a/lib/fuse_signals.c b/lib/fuse_signals.c
index cab9951..8cdc17d 100644..100755
--- a/lib/fuse_signals.c
+++ b/lib/fuse_signals.c
@@ -14,14 +14,14 @@
static struct fuse_session *fuse_instance;
-//! [doxygen_exit_handler]
+/*! [doxygen_exit_handler] */
static void exit_handler(int sig)
{
(void) sig;
if (fuse_instance)
fuse_session_exit(fuse_instance);
}
-//! [doxygen_exit_handler]
+/*! [doxygen_exit_handler] */
static int set_one_signal_handler(int sig, void (*handler)(int))
{