Pasar el valor del proceso hijo al proceso padre

Requisito previo : Pipe() y Fork() Basic
Escriba un programa en C en el que el proceso secundario tome una array de entrada y la envíe al proceso principal mediante pipe() y fork() y luego imprímala en el proceso principal.

Ejemplos: supongamos que tenemos una array a[]={1, 2, 3, 4, 5} en el proceso secundario, entonces la salida debería ser 1 2 3 4 5.

Input:  1 2 3 4 5
Output: 1 2 3 4 5
// C program for passing value from
// child process to parent process
#include <pthread.h>
#include <stdio.h>
#include <sys/types.h>
#include <unistd.h> 
#include <stdlib.h> 
#include <sys/wait.h>
#define MAX 10
  
int main()
{
  
  int fd[2], i = 0;
  pipe(fd);
  pid_t pid = fork();
  
   if(pid > 0) {
      wait(NULL);
  
      // closing the standard input 
      close(0);
  
      // no need to use the write end of pipe here so close it
      close(fd[1]); 
  
       // duplicating fd[0] with standard input 0
      dup(fd[0]); 
      int arr[MAX];
  
      // n stores the total bytes read successfully
      int n = read(fd[0], arr, sizeof(arr));
      for ( i = 0;i < n/4; i++)
  
         // printing the array received from child process
          printf("%d ", arr[i]); 
  } 
  else if( pid == 0 ) {
      int arr[] = {1, 2, 3, 4, 5};
  
      // no need to use the read end of pipe here so close it
      close(fd[0]); 
  
       // closing the standard output
      close(1);    
  
      // duplicating fd[0] with standard output 1
      dup(fd[1]);  
      write(1, arr, sizeof(arr));
  } 
  
  else {
      perror("error\n"); //fork()
  }
} 

Pasos para ejecutar el código anterior:

  • Para compilar, escribe gcc program_name.c
  • Para ejecutar, escriba ./a.out

Publicación traducida automáticamente

Artículo escrito por ram_24 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *