進(jìn)程控制開發(fā)之:Linux守護(hù)進(jìn)程
(3)使用實(shí)例。
這里將上一節(jié)中的示例程序用syslog服務(wù)進(jìn)行重寫,其中有區(qū)別的地方用加粗的字體表示,源代碼如下所示:
/*syslog_daemon.c利用syslog服務(wù)的守護(hù)進(jìn)程實(shí)例*/
#includestdio.h>
#includestdlib.h>
#includestring.h>
#includefcntl.h>
#includesys/types.h>
#includeunistd.h>
#includesys/wait.h>
#includesyslog.h>
intmain()
{
pid_tpid,sid;
inti,fd;
char*buf=ThisisaDaemonn;
pid=fork();/*第一步*/
if(pid0)
{
printf(Errorforkn);
exit(1);
}
elseif(pid>0)
{
exit(0);/*父進(jìn)程推出*/
}
/*打開系統(tǒng)日志服務(wù),openlog*/
openlog(daemon_syslog,LOG_PID,LOG_DAEMON);
if((sid=setsid())0)/*第二步*/
{
syslog(LOG_ERR,%sn,setsid);
exit(1);
}
if((sid=chdir(/))0)/*第三步*/
{
syslog(LOG_ERR,%sn,chdir);
exit(1);
}
umask(0);/*第四步*/
for(i=0;igetdtablesize();i++)/*第五步*/
{
close(i);
}
/*這時(shí)創(chuàng)建完守護(hù)進(jìn)程,以下開始正式進(jìn)入守護(hù)進(jìn)程工作*/
while(1)
{
if((fd=open(/tmp/daemon.log,
O_CREAT|O_WRONLY|O_APPEND,0600))0)
{
syslog(LOG_ERR,open);
exit(1);
}
write(fd,buf,strlen(buf)+1);
close(fd);
sleep(10);
}
closelog();
exit(0);
}
讀者可以嘗試用普通用戶的身份執(zhí)行此程序,由于這里的open()函數(shù)必須具有root權(quán)限,因此,syslog就會(huì)將錯(cuò)誤信息寫入到系統(tǒng)日志文件(例如“/var/log/messages”)中,如下所示:
Jan3018:20:08localhostdaemon_syslog[612]:open
linux操作系統(tǒng)文章專題:linux操作系統(tǒng)詳解(linux不再難懂)pid控制相關(guān)文章:pid控制原理
linux相關(guān)文章:linux教程
pid控制器相關(guān)文章:pid控制器原理
評論