分类: LINUX
2013-12-20 11:04:06
原文地址:守护进程的调试方法 作者:fly123456789
//守护进程的调试方法是通过linux的syslog即系统日志服务来实现的。程序运行信息将输入到"/var/log/messages"
//系统日志文件中。syslogd的配置文件为/etc/syslog.conf。该机制提供了三个syslog函数分别为openlog/syslog/closelog
//openlog:用于打开系统日志服务的一条连接
//syslog:向日志文件中写入消息
//closelog:关闭系统日志服务的连接
ex:
openlog("demo_update",LOG_PID,LOG_DAEMON);
syslog(LOG_ERR,"open");
closelog();
/*守护进程实例子*/
#include
#include
#include
#include
#include
#include
#include
#define MAXFILE 65535
int main()
{
pid_t pc;
int i,fd,len;
char *buf="this is a dameon \n";
len = strlen(buf);
pc =fork(); //创建一个进程用来做守护进程
if(pc<0)
{
printf("error fork \n");
exit(1);
}
else if(pc>0)
exit(0); //结束父进程
setsid(); //使子进程独立1.摆脱原会话控制 2.摆脱原进程组的控制 3.摆脱控制中端的控制
chdir("/"); //改变当前工作目录,这也是为了摆脱父进程的影响
umask(0); //重设文件权限掩码
for(i=0;i
close(i);
while(1)
{
if((fd=open("/tmp/dameon.log",O_CREAT|O_WRONLY|O_APPEND,0600))<0)
{
printf("open file err \n");
exit(0);
}
write(fd,buf,len+1);
close(fd);
sleep(10);
}
}