⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 exp2.c

📁 包含《嵌入式Linux应用程序开发详解》一书的源码
💻 C
字号:
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <unistd.h>
#include <sys/wait.h>
#include <syslog.h>
#define MAXFILE 65535
int main(void)
{
	pid_t child1,child2;
	int i;
	child1 = fork();
	if( child1 == -1 ){
		perror("child1 fork");
		exit(1);
	}
	else if( child1 > 0 )
		exit( 0 );
		/*打开日志服务*/
	openlog("exc2_info", LOG_PID, LOG_DAEMON);
	/*以下几步是编写守护进程的常规步骤*/
	setsid();
	chdir( "/" );
	umask( 0 );
	for( i = 0 ; i < MAXFILE ; i++ )
	{
		close( i );
	}
	/*创建子进程2*/
	child2 = fork();
	if( child2 == -1 ){
		perror("child2 fork");
		exit(1);
	}
	else if( child2 == 0 ){
		syslog( LOG_INFO, " child2 will sleep for 10s ");
		sleep(10);
		syslog( LOG_INFO, " child2 is going to exit! ");
		exit(0);
	}
	else{
		waitpid( child2, NULL, 0);
		syslog( LOG_INFO , " child1 noticed that child2 has exited " );
		closelog();
		while(1){
			sleep(10);
		}	
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -