Two process with identical PID after a fork callAfter fork(), where does the child begin its execution?Why is the PGID of my child processes not the PID of the parent?Process's father after setpgid(0,0);what does it mean 'fork()' will copy address space of original processHow does fork system call really worksWhy is process not part of expected process group?Process and fork() MethodIs a session leader the only process in its group?fork() and COW behavior after exec()Question about global environment variables and fork() & exec()
Generic lambda vs generic function give different behaviour
How to be diplomatic in refusing to write code that breaches the privacy of our users
Displaying the order of the columns of a table
voltage of sounds of mp3files
How can I replace every global instance of "x[2]" with "x_2"
Cynical novel that describes an America ruled by the media, arms manufacturers, and ethnic figureheads
At which point does a character regain all their Hit Dice?
What is the opposite of 'gravitas'?
What is difference between behavior and behaviour
Greatest common substring
The baby cries all morning
when is out of tune ok?
Why did Kant, Hegel, and Adorno leave some words and phrases in the Greek alphabet?
Applicability of Single Responsibility Principle
What is the intuitive meaning of having a linear relationship between the logs of two variables?
How do I keep an essay about "feeling flat" from feeling flat?
Is there a good way to store credentials outside of a password manager?
How do I define a right arrow with bar in LaTeX?
What are the ramifications of creating a homebrew world without an Astral Plane?
Why Were Madagascar and New Zealand Discovered So Late?
What to do with wrong results in talks?
Was the picture area of a CRT a parallelogram (instead of a true rectangle)?
How will losing mobility of one hand affect my career as a programmer?
apt-get update is failing in debian
Two process with identical PID after a fork call
After fork(), where does the child begin its execution?Why is the PGID of my child processes not the PID of the parent?Process's father after setpgid(0,0);what does it mean 'fork()' will copy address space of original processHow does fork system call really worksWhy is process not part of expected process group?Process and fork() MethodIs a session leader the only process in its group?fork() and COW behavior after exec()Question about global environment variables and fork() & exec()
According to the fork
documentation (man 2 fork
):
The child process is an exact duplicate of the parent process except for the following points:
- The child has its own unique process ID, and this PID does not match the ID of any existing process group (setpgid(2)).
So, does it means that two process belonging to two different process groups can have a same PID? It makes no sense to me but fork
enforces that no new PID equals no existing PGID, and thus there could be a non-group leader process with same PID that the newly created process by fork, isn't?
process fork
add a comment |
According to the fork
documentation (man 2 fork
):
The child process is an exact duplicate of the parent process except for the following points:
- The child has its own unique process ID, and this PID does not match the ID of any existing process group (setpgid(2)).
So, does it means that two process belonging to two different process groups can have a same PID? It makes no sense to me but fork
enforces that no new PID equals no existing PGID, and thus there could be a non-group leader process with same PID that the newly created process by fork, isn't?
process fork
2
From your quoted text: The child has its own unique process ID
– Kusalananda♦
yesterday
1
No, it means that the PID of a process cannot be equal to the PGID of a process group other than the one it's member of. Notice that process groups can become orphaned when the pg leader terminates -- the PID of the pg leader will not be reused as long as there are still processes with their PGID equal to it.
– mosvy
yesterday
1
@Kusalananda ouch stupid question then. I was confused because of the rest of the sentence.
– Peregring-lk
yesterday
add a comment |
According to the fork
documentation (man 2 fork
):
The child process is an exact duplicate of the parent process except for the following points:
- The child has its own unique process ID, and this PID does not match the ID of any existing process group (setpgid(2)).
So, does it means that two process belonging to two different process groups can have a same PID? It makes no sense to me but fork
enforces that no new PID equals no existing PGID, and thus there could be a non-group leader process with same PID that the newly created process by fork, isn't?
process fork
According to the fork
documentation (man 2 fork
):
The child process is an exact duplicate of the parent process except for the following points:
- The child has its own unique process ID, and this PID does not match the ID of any existing process group (setpgid(2)).
So, does it means that two process belonging to two different process groups can have a same PID? It makes no sense to me but fork
enforces that no new PID equals no existing PGID, and thus there could be a non-group leader process with same PID that the newly created process by fork, isn't?
process fork
process fork
asked yesterday
Peregring-lkPeregring-lk
280213
280213
2
From your quoted text: The child has its own unique process ID
– Kusalananda♦
yesterday
1
No, it means that the PID of a process cannot be equal to the PGID of a process group other than the one it's member of. Notice that process groups can become orphaned when the pg leader terminates -- the PID of the pg leader will not be reused as long as there are still processes with their PGID equal to it.
– mosvy
yesterday
1
@Kusalananda ouch stupid question then. I was confused because of the rest of the sentence.
– Peregring-lk
yesterday
add a comment |
2
From your quoted text: The child has its own unique process ID
– Kusalananda♦
yesterday
1
No, it means that the PID of a process cannot be equal to the PGID of a process group other than the one it's member of. Notice that process groups can become orphaned when the pg leader terminates -- the PID of the pg leader will not be reused as long as there are still processes with their PGID equal to it.
– mosvy
yesterday
1
@Kusalananda ouch stupid question then. I was confused because of the rest of the sentence.
– Peregring-lk
yesterday
2
2
From your quoted text: The child has its own unique process ID
– Kusalananda♦
yesterday
From your quoted text: The child has its own unique process ID
– Kusalananda♦
yesterday
1
1
No, it means that the PID of a process cannot be equal to the PGID of a process group other than the one it's member of. Notice that process groups can become orphaned when the pg leader terminates -- the PID of the pg leader will not be reused as long as there are still processes with their PGID equal to it.
– mosvy
yesterday
No, it means that the PID of a process cannot be equal to the PGID of a process group other than the one it's member of. Notice that process groups can become orphaned when the pg leader terminates -- the PID of the pg leader will not be reused as long as there are still processes with their PGID equal to it.
– mosvy
yesterday
1
1
@Kusalananda ouch stupid question then. I was confused because of the rest of the sentence.
– Peregring-lk
yesterday
@Kusalananda ouch stupid question then. I was confused because of the rest of the sentence.
– Peregring-lk
yesterday
add a comment |
1 Answer
1
active
oldest
votes
Process IDs are unique.
Per the POSIX fork()
documentation:
DESCRIPTION
The fork() function shall create a new process. The new process (child
process) shall be an exact copy of the calling process (parent
process) except as detailed below:
- The child process shall have a unique process ID.
- The child process ID also shall not match any active process group ID.
- The child process shall have a different parent process ID, which shall be the process ID of the calling process.
...
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "106"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f508508%2ftwo-process-with-identical-pid-after-a-fork-call%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Process IDs are unique.
Per the POSIX fork()
documentation:
DESCRIPTION
The fork() function shall create a new process. The new process (child
process) shall be an exact copy of the calling process (parent
process) except as detailed below:
- The child process shall have a unique process ID.
- The child process ID also shall not match any active process group ID.
- The child process shall have a different parent process ID, which shall be the process ID of the calling process.
...
add a comment |
Process IDs are unique.
Per the POSIX fork()
documentation:
DESCRIPTION
The fork() function shall create a new process. The new process (child
process) shall be an exact copy of the calling process (parent
process) except as detailed below:
- The child process shall have a unique process ID.
- The child process ID also shall not match any active process group ID.
- The child process shall have a different parent process ID, which shall be the process ID of the calling process.
...
add a comment |
Process IDs are unique.
Per the POSIX fork()
documentation:
DESCRIPTION
The fork() function shall create a new process. The new process (child
process) shall be an exact copy of the calling process (parent
process) except as detailed below:
- The child process shall have a unique process ID.
- The child process ID also shall not match any active process group ID.
- The child process shall have a different parent process ID, which shall be the process ID of the calling process.
...
Process IDs are unique.
Per the POSIX fork()
documentation:
DESCRIPTION
The fork() function shall create a new process. The new process (child
process) shall be an exact copy of the calling process (parent
process) except as detailed below:
- The child process shall have a unique process ID.
- The child process ID also shall not match any active process group ID.
- The child process shall have a different parent process ID, which shall be the process ID of the calling process.
...
answered yesterday
Andrew HenleAndrew Henle
2,787911
2,787911
add a comment |
add a comment |
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f508508%2ftwo-process-with-identical-pid-after-a-fork-call%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
2
From your quoted text: The child has its own unique process ID
– Kusalananda♦
yesterday
1
No, it means that the PID of a process cannot be equal to the PGID of a process group other than the one it's member of. Notice that process groups can become orphaned when the pg leader terminates -- the PID of the pg leader will not be reused as long as there are still processes with their PGID equal to it.
– mosvy
yesterday
1
@Kusalananda ouch stupid question then. I was confused because of the rest of the sentence.
– Peregring-lk
yesterday