summaryrefslogtreecommitdiffstats
path: root/sesman/sig.h
diff options
context:
space:
mode:
Diffstat (limited to 'sesman/sig.h')
-rw-r--r--sesman/sig.h27
1 files changed, 22 insertions, 5 deletions
diff --git a/sesman/sig.h b/sesman/sig.h
index 81687437..07e2e6dd 100644
--- a/sesman/sig.h
+++ b/sesman/sig.h
@@ -18,19 +18,36 @@
session manager
linux only
-
- sig.h: signal handling code declarations
-
*/
+/**
+ *
+ * @file sig.h
+ * @brief Signal handling function declarations
+ * @author Jay Sorg, Simone Fedele
+ *
+ */
+
#ifndef SIG_H
#define SIG_H
-/******************************************************************************/
+/**
+ *
+ * @brief Shutdown signal code
+ *
+ * @param sig The received signal
+ *
+ */
void DEFAULT_CC
sig_sesman_shutdown(int sig);
-/******************************************************************************/
+/**
+ *
+ * @brief SIGHUP handling code
+ *
+ * @param sig The received signal
+ *
+ */
void DEFAULT_CC
sig_sesman_reload_cfg(int sig);