I need to change the state of group of processes from sleep (S) to run (R), is there any command to perform this quickly and note that I have their PIDs.
If this doesn't help you, you may want to investigate why the processes are falling in to wait states to begin with. A strategically placed 'echo -n' might shed some light. For example, are they expecting input from a user or another process?
I don't have the rep to comment, so I'll just post an answer.
You may need to apply the kill "cont" command to all of the child processes, like this...
If this doesn't help you, you may want to investigate why the processes are falling in to wait states to begin with. A strategically placed 'echo -n' might shed some light. For example, are they expecting input from a user or another process?
Good luck.