Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
2answers
108 views

Does Linux allow process group ids to be reassigned to processes?

Suppose pid X is a process group leader and X terminates, but other processes in the process group remain running (with X as their pgid). Will Linux prevent the value X from being assigned as a pid to ...
7
votes
2answers
272 views

How to set process group of a shell script

How to set process group of a shell script ? Also I want all the child process to be in the same process group I expect something similar to setpgid() in C.