码迷,mamicode.com
首页 > 系统相关 > 详细

【Linux学习】编写一个守护进程

时间:2014-10-15 19:27:01      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   使用   for   sp   div   on   

题目:

编写一个守护进程,每隔3秒钟将当前时间输出。
要求:

不能使用init_daemon系统调用。

 

#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <time.h>
#include <unistd.h>

int main(void)
{
    pid_t pid;
    
    pid = fork();
    
    if(pid > 0)
    {
        exit(0);
    }
    
    if(0 == pid)
    {
        setsid();
        
        time_t now;      
        struct tm *timenow;
        
        while(1)
        {
            time(&now);
            timenow = localtime(&now);
            printf("localtime is:%s\n", asctime(timenow));
            
            sleep(3);
            
        }
        
    }
    

    return 0;
}

 

【Linux学习】编写一个守护进程

标签:style   blog   color   io   使用   for   sp   div   on   

原文地址:http://www.cnblogs.com/shichuan/p/4026460.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!