进程的基本操作,fork(),创建多进程。


    fork用于新建一个子进程,简单的例子:

#include <fcntl.h>								//提供open函数
#include <sys/types.h>                          // 该头文件提供系统调用的标志
#include <sys/stat.h>                           // 该头文件提供系统状态信息和相关函数
#include <sys/uio.h>                            // 该头文件提供进程I/O操作的相关函数
#include <unistd.h>                                     // 标准函数库
#include <fcntl.h>                                              // 文件操作相关函数库
#include <string.h>                                             // 字符串操作函数库
#include <sys/wait.h>                                   // wait调用相关函数库
#include <stdio.h>                                              // 标准输入与输出函数库
#include <stdlib.h>                                             // 常用工具函数库

int main() {
	char buf[100];
	pid_t cld_pid;
	int fd;
	int status;
	if ((fd = open("temp", O_CREAT | O_RDWR | O_TRUNC, 0664)) == -1) {                                                                                   // 打开或新建文件
<span style="white-space:pre">	</span>    perror("创建文件");
	    exit(1);
	}
	strcpy(buf, "父进程数据");
	if((cld_pid = fork()) == 0) {
		strcpy(buf, "子进程数据");
		//printf("1\n");
		puts("子进程正在工作:");
		printf("子进程PID是%d\n", getpid());              // 输出子进程的PID
		printf("父进程PID是%d\n", getppid());             // 输出父进程的PID
		write(fd, buf, strlen(buf));
	        close(fd);
		exit(0);
	} else {
		puts("父进程正在工作:");
		//printf("2\n");
		printf("父进程PID是%d\n", getpid());              // 输出父进程的PID
		printf("子进程PID是%d\n", cld_pid);               // 输出子进程的PID
		write(fd, buf, strlen(buf));
		close(fd);
	}
	wait(&status);
	return 0;
}


郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。