多进程下的文件描述符

传智扫地僧课程学习笔记。



父进程创建子进程后,

父 子进程共享文件描述符,都可以进行操作,

但是父子进程,操作文件的先后顺序,是随机的,



需要强调一点的是,两个进程都有独立的地址空间,都需要close(fd)关掉文件,

简单说,就是,操作的是一个文件表,在这个文件表中,会记录有2个进程在操作,想知道更细节的话,去课程中看,

#include <sys/types.h>
#include <unistd.h>

#include <stdlib.h>
#include <stdio.h>
#include <string.h>

#include <signal.h>
#include <errno.h>
#include <signal.h>

   #include <sys/stat.h>
       #include <fcntl.h>


int main(void )
{
	pid_t pid;
	int fd; 
	signal(SIGCHLD, SIG_IGN);
	printf("befor fork pid:%d \n", getpid());
	
	/*
	RETURN VALUE
       open() and creat() return the new file descriptor, or -1 if an error occurred  (in  which  case,  errno  is  set
       appropriately).
       */

	
	fd  = open("./1.txt", O_RDWR);
	if (fd == -1)
	{
		perror("myopen");
		return -1;
	}


	pid = fork(); //errno
	if (pid == -1)	
	{
		perror("tile");
		return -1;
	}
	if (pid > 0)
	{
		printf("parent: pid:%d \n", getpid());
		//#include <unistd.h>

       //ssize_t write(int fd, const void *buf, size_t count);
		write(fd, "parent", 6);
		close(fd);
	
		//sleep(20);
	}
	else if (pid == 0)
	{

		printf("child: %d, parent: %d \n", getpid(), getppid());
		write(fd, "child", 5);
		//sleep(100);
		close(fd);
		exit(0);
	}

	printf("fork after....\n");
	return 0;
}









  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值