The problem is to print natural nos. 1,2,...n such that the parent process prints all odd numbers and child all even numbers using POSIX signals. Output should be: Parent : 1 Child : 2 Parent : 3 and so on...any suggestions?
|
|
|||
|
|
|
It would probably be more beneficial for you provide what you have so far and explain what doesn't work as expected but here is what I came up with:
This passes these basic tests:
|
||
|
|
|
|
I think this homework assignment was given to you to make you try a lot of solution and conclude by yourself that signals are not a good synchronisation technique. This an invaluable lesson, remember it well and use semaphores from now on! :) |
||
|
|
|
|
Yes, this site is for asking programming questions, but when you are solving a real world problem or working on a side project for fun, getting the answer is often more important than truly understanding the problem and knowing how to solve it yourself. Perhaps we are capable of helping you through solving the problem, but your TA and/or instructor is more suited for that. They are teaching you the class. They are available (or should be) to help you. |
||
|
|
|
|
Why? It is a problem I am facing and I am asking it here after trying to solve it for two days and referring to books. I am not asking for the code. I was hoping to find some intelligent ways to solve it. I thought the site was about asking Programming questions. |
||
|
|
|
|
Your TA or instructor would probably be the best person to direct your questions to. It is generally considered bad form to post homework assignment questions on discussion forums, and I would suppose that the same applies here at SO. |
||
|
|
|
|
Do homework questions count as offensive? |
||
|
|
|
yes...and will help me understand signals better. I have read the chapter on signals in Linux System Programming by Robert Love but I am not able to solve it. The problem is inspite of writing a signal handler the parent terminates. So I guess there is some problem in my logic. |
||
|
|
|
This a nice little homework assignment? |
||
|
|
