Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Read Chapter 6 Process Synchronization Create a console-based application that spawns two threads: a producer and a consumer. Use any programming language. The producer should
Read Chapter 6 Process Synchronization
Create a console-based application that spawns two threads: a producer and a consumer. Use any programming language.
The producer should open an input file and repeatedly copy values to a circular buffer.
The consumer should open an output file and repeatedly copy values from the same circular buffer to the file.
For both the producer and consumer, a random number of bytes between 1 and n, inclusive, should be copied each iteration, where n is specified by the user. The number of bytes should be randomized each iteration.
If the producer is unable to write to the buffer (because it does not contain enough empty elements), or if the consumer is unable to read from the buffer (because it does not contain enough unread items), then it should proceed to the next iteration, choosing a new random number of bytes to copy. (Exception: Once the producer has already read the entire file, then the consumer does not have to continue generating random numbers until it gets an exact hit; instead, it should write the rest of the buffer to complete the copy.)
When the program completes, the output file should be an exact copy of the input file.
The syntax of the program should be as follows:
copyfile input output n m
where
copyfile is the name of your executable
input is the name of the input file
output is the name of the output file
n is the maximum number of bytes to copy in any given iteration (described above)
m is the size of the circular buffer, in bytes
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started