-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Spawning and monitoring multiple workers form one node #1
Comments
Hi @shaleengarg, do you know what number that exercise is? It looks like there are at least 6 exercises for chapter 13, and I have only completed 4 in this repository. If you let me know what number that exercise was I'll try to add that it as well. |
Hi @Stratus3D . Its question 5 and 6 (Pg 209) |
Hi @Stratus3D Please take a look at this code %%Coded By shaleengarg sp(N) -> %%list of the form [{Number of processes, Node}...] master(List) -> subordinate(Number, Node) -> wait() -> for(N, N, F) -> [F()]; I wrote this code myself. Please review this code. I will be happy to issue a push request |
Sorry it's taken me so long to respond. I'm in the process of updating everything for Chapter 13. I'm working on adding more detailed comments to all the exercises. Last night I pushed the solution for exercise 13.4. Hoping to push the solution for 13.5 sometime this week. |
In all your
This is how it's rendered:
|
@7stud thanks. I've fixed the formatting of all the README files. |
In chapter 13, there is a question which asks us to write a program which can monitor multiple processes(workers). I have written a program which can monitor one process, but am not sure how to scale that for multiple processes.
The text was updated successfully, but these errors were encountered: