APUE:守护进程

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了APUE:守护进程相关的知识,希望对你有一定的参考价值。

  1. 重置文件屏蔽字 umask(0)
  2. fork(),父进程 exit(0) 以响应启动者
  3. setsid(),断开所有控制终端
  4. 修改工作目录为 /
  5. 关闭文件描述符
  6. 将 0、1、2 重定位到 /dev/null
  7. 检测是否已经存在相同的守护进程正在运行,对 /var/run/xxxd.pid 进行 lockfile()
  8. 恢复 SIGHUP 的信号处理程序为默认 SIG_DFL
  9. 主线程调用 pthread_sigmask() 屏蔽所有信号
  10. 开新线程,使用 sigwait() 等待信号,遇到 SIGHUP 重读配置文件,遇到 SIGTERM 终止
  11. 主线程完成其他工作

 

写入日志:

#define	LOG_EMERG	0	/* system is unusable */
#define	LOG_ALERT	1	/* action must be taken immediately */
#define	LOG_CRIT	2	/* critical conditions */
#define	LOG_ERR		3	/* error conditions */
#define	LOG_WARNING	4	/* warning conditions */
#define	LOG_NOTICE	5	/* normal but significant condition */
#define	LOG_INFO	6	/* informational */
#define	LOG_DEBUG	7	/* debug-level messages */

int syslog (int __pri, const char *__fmt, ...);

 

以上是关于APUE:守护进程的主要内容,如果未能解决你的问题,请参考以下文章

APUE 学习笔记4: Unix Process Control 进程控制

APUE 学习笔记4: Unix Process Control 进程控制

apue 外传

APUE学习笔记——10.9 信号发送函数kill raisealarmpause

apue第九章 孤儿进程组例子

[APUE]进程控制(中)