Help for this page

Select Code to Download


  1. or download this
       else { /* In the parent */
          /* close unneeded endpoints */
    ...
          printf("\n");
          close(reader[0]);  /* HERE I CLOSE FILTER->PARENT */
       }
    
  2. or download this
       else { /* In the parent */
          /* close unneeded endpoints */
    ...
          close(writer[1]);
          close(reader[0]);
       }