日期:2014-05-16 浏览次数:20803 次
void *DaemonThread(void *pArg)
{
//线程函数中 调用了
system("/opt/scal");
}
int main()
{
//创建一个线程
pthread_create(,DaemonThread,)//参数没写全
//假如我线程,或者这个主进程退出了,我还想让system("/opt/scal")这个继续工作,应该怎么弄呢?
}
int Daemon()
{
struct sigaction act;
if(fork()!=0) exit(1);
/* 创建一个新的会议组 */
if(setsid()<0)exit(1);
/* 忽略信号SIGHUP */
act.sa_handler=SIG_IGN;
sigemptyset(&act.sa_mask);
act.sa_flags=0;
if(sigaction(SIGHUP,&act,NULL)==-1)exit(1);
/* 子进程退出,孙进程没有控制终端了 */
if(fork()!=0) exit(1);
if(chdir("/")==-1)exit(1);
return 0;
}