diff options
author | Joachim Schiele <joachim.schiele@daimler.com> | 2013-07-02 17:37:29 +0200 |
---|---|---|
committer | Joachim Schiele <joachim.schiele@daimler.com> | 2013-07-02 17:37:38 +0200 |
commit | f4f87bba1266e6135e300ac6853efb9708aabce9 (patch) | |
tree | 732af8ae9004da1406a6fab16fa72696cc1d55b5 | |
parent | ea7227db439cc0e02a7ed69feae75fac6dfcc637 (diff) | |
download | libfuse-f4f87bba1266e6135e300ac6853efb9708aabce9.tar.gz |
rewrote c++ style comments to c style coments mentioned by Miklos Szeredi
-rwxr-xr-x | example/hello.c | 2 | ||||
-rwxr-xr-x | example/hello_ll.c | 6 | ||||
-rwxr-xr-x[-rw-r--r--] | lib/fuse_lowlevel.c | 0 | ||||
-rwxr-xr-x[-rw-r--r--] | lib/fuse_signals.c | 4 |
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)) { |