COMP 340 – Operating Systems
Fall, 2023
代寫(xiě)HW2: Bounded Buffer Problem
代寫(xiě)PROBLEM STATEMENT:
代寫(xiě)There are 3 generators and each produces a unique kind of material independently. All these
代寫(xiě)materials are stored in an input buffer with size 10 before they are forwarded to the operators.
代寫(xiě)We have 3 operators with same priority who are responsible for producing the products based on
代寫(xiě)these materials. Each product needs 2 different kinds of materials. Each time an operator needs 2
代寫(xiě)tools for this purpose. There are totally 3 tools provided for these operators. An operator can only
代寫(xiě)process one product at one time. When an operator gets both the materials and tools, he can
代寫(xiě)produce a product within a limited time varied from 0.01 second to 1 second. Otherwise, he has
代寫(xiě)to wait until all the necessities are met. He can grab the materials or tools first, it does not matter,
代寫(xiě)but he can only get one thing at one time. If an operator decides to make another product before
代寫(xiě)he starts to make the current product, he can put the materials and tools back and re-get the new
代寫(xiě)materials and tools. But he has to put the tools back after he finishes a product because other
代寫(xiě)operators may need these tools. All the products are put into a size-unlimited output queue. An
代寫(xiě)operator cannot start a new product before he puts the product into the output queue. Some
代寫(xiě)restrictions may apply to these products: 1) No same products can be next to each other in this
代寫(xiě)queue. We say that two products are same if they are made from the same kinds of materials. 2)
代寫(xiě)The difference of the number of any two kinds of products produced should be less than 10, for
代寫(xiě)example, we can have 10 of product A and 15 of product B, but it is not allowed if we have 10 of
代寫(xiě)A and 21 of B because the difference is 11 which is larger than 10.
代寫(xiě)SUBMISSION INSTRUCTIONS
代寫(xiě)Your assignments must be both emailed and presented in class on the due date. You will submit
代寫(xiě)a single .ZIP, .RAR or .TAR file that will contain:
代寫(xiě)1) A soft copy of your source code.
代寫(xiě)2) A Makefile to compile the code.
代寫(xiě)3) A soft copy of a report documenting the internal design of your program.
代寫(xiě)Your program must be in C/C++. It is your responsibility to make sure your program compiles
代寫(xiě)and runs smoothly under Linux. Your program should not be stalled in a dead cycle at any time.
代寫(xiě)This is the only submission method
代寫(xiě).
代寫(xiě)DEADLINE
代寫(xiě)The deadline for homework is 11:59:59 PM on Wednesday, December 1
代寫(xiě)st, 2023. Submissions
代寫(xiě)after this deadline will be considered late and will NOT be accepted. Do not present code in a
代寫(xiě)PDF or Word document – it must be an executable .c file as in the case of the midterm. Email a
代寫(xiě)zip file to steven.pearce@ufv.ca . Do not upload to Blackboard.
代寫(xiě)GRADING
代寫(xiě)Your homework assignment is worth 10 points (10%). During the execution of your program,
代寫(xiě)you should provide these information dynamically:
代寫(xiě)1) For each material, how many of them are generated?
代寫(xiě)2) The status of the input buffer.
代寫(xiě)3) For each kind of product, how many are produced?
代寫(xiě)4) The status of the output queue.
代寫(xiě)5) How many times the deadlock happens?
代寫(xiě)Additional Notes:
代寫(xiě)Students need to be careful to design their solution in a way that avoids any potential deadlocks
代寫(xiě)that could be caused by these scenarios:
代寫(xiě)• A glut of materials of the same type in the materials queue (solution: students should
代寫(xiě)incorporate some mechanism to guarantee that there is sufficient variety in the materials
代寫(xiě)queue)
代寫(xiě)• Workers hogging tools (Possible solutions: workers attempt to grab PAIRS of tools
代寫(xiě)instead of picking them up individually. Alternatively, when a worker is holding on to a
代寫(xiě)single tool, there needs to be some mechanism like a counter that keeps track of attempts
代寫(xiě)to grab the second tool. After a certain number of unsuccessful attempts, the worker
代寫(xiě)should release the tool its holding, which would allow some other thread to grab it.)
代寫(xiě)Also provide these functions
代寫(xiě)1) Pause and resume the program at any time. 2) Make the number of operators and tools
代寫(xiě)adjustable.
代寫(xiě)Please feel free to provide additional information and functions that you consider useful.
代寫(xiě)The most important thing is to make sure your program works correctly. Do not worry about
代寫(xiě)your programming style or efficiency. But it does matter if you provide a smarter internal design
代寫(xiě)(approach) and user-friendly interface.
代寫(xiě)IMPORTANT: Your program must COMPILE AND RUN or you will get a mark of ZERO on
代寫(xiě)your assignment.
代寫(xiě)Assignment grades will be open for review for one week only.
代寫(xiě)Finally, a reminder that plagiarism will result in an automatic failing grade for the course.
代寫(xiě)代寫(xiě)
請(qǐng)加QQ:99515681 或郵箱:99515681@qq.com WX:codehelp
代寫(xiě)代寫(xiě)