diff options
author | ilsimo <ilsimo> | 2005-11-13 22:06:49 +0000 |
---|---|---|
committer | ilsimo <ilsimo> | 2005-11-13 22:06:49 +0000 |
commit | 9ac351a4cb72ad1ceaf8c57cc05dfc9067145ca0 (patch) | |
tree | 3c5a0a665b3c760ea0f1500fc49f88a0fc1dd206 /sesman/sig.h | |
parent | 3cdf8bdcee7d1ccbe270f919e416478ba1ca88d2 (diff) | |
download | xrdp-proprietary-9ac351a4cb72ad1ceaf8c57cc05dfc9067145ca0.tar.gz xrdp-proprietary-9ac351a4cb72ad1ceaf8c57cc05dfc9067145ca0.zip |
added --nodaemon and --kill options
added pid file generation
improved some code documentation
Diffstat (limited to 'sesman/sig.h')
-rw-r--r-- | sesman/sig.h | 27 |
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); |