APUE:守护进程
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了APUE:守护进程相关的知识,希望对你有一定的参考价值。
- 重置文件屏蔽字 umask(0)
- fork(),父进程 exit(0) 以响应启动者
- setsid(),断开所有控制终端
- 修改工作目录为 /
- 关闭文件描述符
- 将 0、1、2 重定位到 /dev/null
- 检测是否已经存在相同的守护进程正在运行,对 /var/run/xxxd.pid 进行 lockfile()
- 恢复 SIGHUP 的信号处理程序为默认 SIG_DFL
- 主线程调用 pthread_sigmask() 屏蔽所有信号
- 开新线程,使用 sigwait() 等待信号,遇到 SIGHUP 重读配置文件,遇到 SIGTERM 终止
- 主线程完成其他工作
写入日志:
#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 进程控制