aboutsummaryrefslogtreecommitdiffstats
path: root/src/mds-base.h
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2014-08-29 18:06:27 +0200
committerMattias Andrée <maandree@operamail.com>2014-08-29 18:06:27 +0200
commitaa7568432d24edba087891f58bcd2a882d141bfb (patch)
treeebcf052c6da6bbe1d56362d716c0e40003fa4889 /src/mds-base.h
parentm + info: mds_message_t (diff)
downloadmds-aa7568432d24edba087891f58bcd2a882d141bfb.tar.gz
mds-aa7568432d24edba087891f58bcd2a882d141bfb.tar.bz2
mds-aa7568432d24edba087891f58bcd2a882d141bfb.tar.xz
m + info: mds-base
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to '')
-rw-r--r--src/mds-base.h12
1 files changed, 2 insertions, 10 deletions
diff --git a/src/mds-base.h b/src/mds-base.h
index 89231bf..1ea132a 100644
--- a/src/mds-base.h
+++ b/src/mds-base.h
@@ -192,14 +192,6 @@ int server_initialised(void); /* __attribute__((weak)) */
/**
- * This function is called when an intraprocess signal
- * that used to send a notification to a thread
- *
- * @param signo The signal that has been received
- */
-void received_noop(int signo) __attribute__((weak, const));
-
-/**
* This function should be implemented by the actual server implementation
* if the server is multi-threaded
*
@@ -207,7 +199,7 @@ void received_noop(int signo) __attribute__((weak, const));
*
* @param signo The signal
*/
-void signal_all(int signo) __attribute__((weak));
+void signal_all(int signo); /* __attribute__((weak)) */
/**
* This function is called when a signal that
@@ -222,7 +214,7 @@ void received_reexec(int signo); /* __attribute__((weak)) */
/**
* This function is called when a signal that
- * signals the server to re-exec has been received
+ * signals the server to terminate has been received
*
* When this function is invoked, it should set `terminating` to a non-zero value
*