Download presentation
Presentation is loading. Please wait.
1
Homework Assignment #1 J. H. Wang Oct. 2, 2015
2
Homework #1 Chap.1: 1.4 Chap.2: 2.7 Chap.3: 3.2, 3.11, 3.14*, 3.20*
(*: optional programming exercises) Extra bonus: End-of-chapter programming projects for Chaps. 2-3 Due: two weeks (Oct. 16, 2015)
3
Chap.1 1.4: Describe the differences between symmetric and asymmetric multiprocessing. What are the advantages and disadvantages of multiprocessor systems?
4
Chap. 2 2.10: What are the two models of interprocess communication? What are the strengths and weaknesses of the two approaches?
5
Chap. 3 3.2: Describe the actions taken by a kernel to context-switch between processes. 3.11: What are the benefits and the disadvantages of each of the following? Consider both the system level and the programmer level. (a) Synchronous and asynchronous communication (b) Automatic and explicit buffering (c) Send by copy and send by reference (d) Fixed-sized and variable-sized messages
6
3.14*: The Collatz conjecture concerns what happens when we take any positive integer n and apply the following algorithm: The conjecture states that when this algorithm is continually applied, all positive integers will eventually reach 1. For example, if n=35, the sequence is 35, 106, 53, 160, 80, 40, 20, 10, 5, 16, 8, 4, 2, 1 (…to be continued…)
7
Write a C program using the fork() system call that generates this sequence in the child process. The starting number will be provided from the command line. For example, if 8 is passed as a parameter on the command line, the child process will output 8, 4, 2, 1. Because the parent and child processes have their own copies of the data, it will be necessary for the child to output the sequence. Have the parent invoke the wait() call to wait for the child process to complete before exiting the program. Perform necessary error checking to ensure that a positive integer is passed on the command line.
8
3.20*: Design a file-copying program named filecopy using ordinary pipes. This program will be passed two parameters: the name of the file to be copied and the name of the copied file. The program will then create an ordinary pipe and write the contents of the file to be copied to the pipe. The child process will read this file from the pipe and write it to the destination file. For example, if we invoke the program as follows: filecopy input.txt copy.txt the file input.txt will be written to the pipe. The child process will read the contents of this file and write it to the destination file copy.txt. You may write this program using either UNIX or Windows pipes.
9
Homework Submission For hand-written exercises, please hand in your homework on paper in class For programming exercises, please upload your source code to the program submission site as follows: URL: User account/Password: (your student ID) Please change your password as soon as possible Program uploading: a compressed file (in .zip format) including source codes and compilation instructions if it needs special environment to compile or run Please clearly name your program files using your ID Note: the uploaded file size must be less than 5MB
10
More on Optional End-of-Chapter Projects
Programming Project for Chap. 2: Linux Kernel Modules Creating kernel modules Kernel data structures Programming Project for Chap. 3: Project 1: UNIX Shell and History Feature Creating a child process Creating a history feature Project 2: Linux Kernel Module for Listing Tasks Iterating over tasks linearly Iterating over tasks with a depth-first search tree
11
Thanks for Your Attention!
Similar presentations
© 2025 SlidePlayer.com. Inc.
All rights reserved.