Question: OBJECTIVES To develop a C program that uses both fork() and pipe() process system calls to implement a full duplex communication between two processes. PROBLEM

OBJECTIVES

To develop a C program that uses both fork() and pipe() process system calls to implement a full duplex communication between two processes.

PROBLEM

You are to use the Ubuntu operating system to create two C programs. Program consumerProducer.c and program producerConsumer.c. These two programs will implement full duplex communication.

The producerConsumer program will

  1. create a text file with the name editSource.txt and will write all sentences of the created file on one pipe to be read by the consumerProducer program.

The consumerProducer program will

  1. read from the pipe and it will
  2. count the number of characters,
  3. the number of words, and
  4. the number of lines in the received sentences.

It will then

  1. create a file named theCount.txt,
  2. write the produced output to theCount.txt, and will
  3. write the contents of the file theCount.txt on a second pipe to be read the producerConsumer process.

The producerConsumer process will display the received file on standard output.

The contents of the editSource.txt file is as follows:

Source code

represents the part of

process that

contains the programming

language itself. You may

use a text editor to

write your source code file.

You may use the fork(), pipe(), dup(), dup2(), read(), write(), creat(), as well as any of the exec() family of system calls.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!