diff options
author | Mattias Andrée <maandree@operamail.com> | 2015-04-12 05:23:19 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2015-04-12 05:23:19 +0200 |
commit | 6dbcbc441ab98bcf0a602d9aa86232ae94e08a97 (patch) | |
tree | 46ea1235a1f84b57b65a9741415c35e9b911f69e /src/mds-base.h | |
parent | info: sigrtmin (diff) | |
download | mds-6dbcbc441ab98bcf0a602d9aa86232ae94e08a97.tar.gz mds-6dbcbc441ab98bcf0a602d9aa86232ae94e08a97.tar.bz2 mds-6dbcbc441ab98bcf0a602d9aa86232ae94e08a97.tar.xz |
noop implementation of siginfo support
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to '')
-rw-r--r-- | src/mds-base.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/mds-base.h b/src/mds-base.h index fe33a83..50aba78 100644 --- a/src/mds-base.h +++ b/src/mds-base.h @@ -238,6 +238,15 @@ void received_terminate(int signo); /* __attribute__((weak)) */ void received_danger(int signo); /* __attribute__((weak)) */ /** + * This function is called when a signal that + * signals that the system to dump state information + * and statistics has been received + * + * @param signo The signal that has been received + */ +void received_info(int signo); /* __attribute__((weak)) */ + +/** * This function should be implemented by the actual server implementation * * This function will be invoked before `initialise_server` (if not re-exec:ing) |