首页 > 系统相关 >编写多进程编程

编写多进程编程

时间:2023-02-23 15:46:44浏览次数:35  
标签:child1 child2 编程 child exit printf 进程 编写

实验内容:有3个进程,其中一个为父进程,其余两个是该父进程创建的子进程,其中一个子进程运行"ls -l"指令,另一个子进程暂停5s之后异常退出,父进程先用阻塞方式等待第一子进程的结束,然后用非阻塞方式等待另一个子进程退出,等待收集到第二个子进程结束的信息,父进程就返回。

复制代码
/* multi_proc.c */
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <unistd.h>
#include <sys/wait.h>

int main(void)
{
    pid_t child1, child2, child;
    
    /*创建两个子进程*/
    child1 = fork();        
    /*子进程1的出错处理*/
    if (child1 == -1)
    {
        printf("Child1 fork error\n");
        exit(1);
    }
    else 
        if (child1 == 0) /*在子进程1中调用execlp()函数*/
       {
           printf("In child1: execute 'ls -l'\n");
           if (execlp("ls", "ls", "-l", NULL) < 0)
           {
               printf("Child1 execlp error\n");
           }
       }
      else /*在父进程中再创建进程2,然后等待两个子进程的退出*/
      {
          child2 = fork();
          if (child2 == -1) /*子进程2的出错处理*/
          {
              printf("Child2 fork error\n");
              exit(1);
          }
          else if(child2 == 0) /*在子进程2中使其暂停5s*/
          {
              printf("In child2: sleep for 5 seconds and then exit\n");
            sleep(5);
            exit(0);
        }

        printf("In father process:\n");
        child = waitpid(child1, NULL, 0); /* 阻塞式等待 */
          if (child == child1)
          {
              printf("Get child1 exit code\n");
          }
          else
          {
              printf("Error occured!\n");
          }
          
          do
          {
              child = waitpid(child2, NULL, WNOHANG);/* 非阻塞式等待 */
              if (child == 0)
              {
                  printf("The child2 process has not exited!\n");
                  sleep(1);
              }
          } while (child == 0);
          
          if (child == child2)
        {
            printf("Get child2 exit code\n");
        }
        else
        {
            printf("Error occured!\n");
        }
    }
    return 0;
}
复制代码

 第二种代码写法:

复制代码
/* multi_proc_wrong.c */
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <unistd.h>
#include <sys/wait.h>

int main(void)
{
    pid_t child1, child2, child;
    /*创建两个子进程*/
    child1 = fork();
    child2 = fork();
    /*子进程1的出错处理*/
    if (child1 == -1)
    {
        printf("Child1 fork error\n");
        exit(1);
    }
    else if (child1 == 0) /*在子进程1中调用execlp()函数*/
    {
             printf("In child1: execute 'ls -l'\n");
        if (execlp("ls", "ls", "-l", NULL) < 0)
        {
            printf("Child1 execlp error\n");
        }
      }
      
      if (child2 == -1) /*子进程2的出错处理*/
      {
          printf("Child2 fork error\n");
          exit(1);
      }
      else if( child2 == 0 ) /*在子进程2中使其暂停5s*/
      {
          printf("In child2: sleep for 5 seconds and then exit\n");
          sleep(5);
          exit(0);
      }
      else /*在父进程中等待两个子进程的退出*/
      {
          printf("In father process:\n");
          child = waitpid(child1, NULL, 0); /* 阻塞式等待 */
          if (child == child1)
          {
              printf("Get child1 exit code\n");
          }
          else
          {
              printf("Error occured!\n");
          }
          
          do
          {
              child = waitpid(child2, NULL, WNOHANG);/* 非阻塞式等待 */
              if (child == 0)
              {
                  printf("The child2 process has not exited!\n");
                  sleep(1);
              }
          } while (child == 0);
          
          if (child == child2)
        {
            printf("Get child2 exit code\n");
        }
        else
        {
            printf("Error occured!\n");
        }
    }
    return 0;
}
复制代码

标签:child1,child2,编程,child,exit,printf,进程,编写
From: https://www.cnblogs.com/kn-zheng/p/17148176.html

相关文章

  • 面向对象编程
    1、面向对象编程1、特点封装:让使用对象的人不考虑内部实现,只考虑功能使用把内部的代码保护起来,只留出一些api接口供用户使用继承:就是为了代码的复用,从父类上继承出一......
  • java 面向接口编程
        Advertisement.javapublicinterfaceAdvertisement{//接口publicvoidshowAdvertisement();publicStringgetCorpName();}Advertis......
  • 15.网络编程
    1.常见网络词汇交换机:用于组件局域网  路由器:实现局域网之间的通信  三层交换机:集成了交换机&路由器的功能  IP:用于在网络中确定主机的位置一个IP......
  • JavaScript 编写位置
    <!DOCTYPEhtml><html> <head> <metacharset="UTF-8"> <title></title> <!-- 可以将js代码编写到外部js文件中,然后通过script标签引入 写到外部文件中可......
  • java 网络编程Socket编程
        Server.javaimportjava.io.*;importjava.net.*;publicclassServer{publicstaticvoidmain(Stringargs[]){String[]answer={......
  • 编写端口转发程序的总结
    一个端口转发程序,写了快2个星期最开始的时候,是因为没有沟通好程序的需求,不知道程序的目标是什么然后,是因为对于select函数的理解存在问题接着,对于网络编程、系统编程缺......
  • java socket网络编程(多线程技术)
    Client.javaimportjava.io.*;importjava.net.*;importjava.util.*;publicclassClient{publicstaticvoidmain(Stringargs[]){Scannerscann......
  • java之并发编程(上)
    回顾1、线程与进程进程:正在运行的程序,进程包含至少一个或多个线程2、创建线程的方式实现Runable接口继承Thread类(不建议使用,java是单继承,可扩展性差),用start方法通知c......
  • java基础之网络编程
    1.1网络编程中的两个主要问题:如何准确定位网络中的一台主机主机之间如何通信1.2网络中的主要元素IP地址,端口号port,套接字socket主要的通信协议tcp,udpIP地......
  • 【TypeScript 编程】001-002 第 1 章 导言 与 第 2 章 TypeScript 概述
    【TypeScript编程】001-002第1章导言与第2章TypeScript概述文章目录​​【TypeScript编程】001-002第1章导言与第2章TypeScript概述​​​​第1章......