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()













-2















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?










share|improve this question

















  • 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















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?










share|improve this question

















  • 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








-2








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?










share|improve this question














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






share|improve this question













share|improve this question











share|improve this question




share|improve this question










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












  • 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










1 Answer
1






active

oldest

votes


















4














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.

...







share|improve this answer






















    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
    );



    );













    draft saved

    draft discarded


















    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









    4














    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.

    ...







    share|improve this answer



























      4














      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.

      ...







      share|improve this answer

























        4












        4








        4







        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.

        ...







        share|improve this answer













        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.

        ...








        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered yesterday









        Andrew HenleAndrew Henle

        2,787911




        2,787911



























            draft saved

            draft discarded
















































            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.




            draft saved


            draft discarded














            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





















































            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







            Popular posts from this blog

            getting Checkpoint VPN SSL Network Extender working in the command lineHow to connect to CheckPoint VPN on Ubuntu 18.04LTS?Will the Linux ( red-hat ) Open VPNC Client connect to checkpoint or nortel VPN gateways?VPN client for linux machine + support checkpoint gatewayVPN SSL Network Extender in FirefoxLinux Checkpoint SNX tool configuration issuesCheck Point - Connect under Linux - snx + OTPSNX VPN Ububuntu 18.XXUsing Checkpoint VPN SSL Network Extender CLI with certificateVPN with network manager (nm-applet) is not workingWill the Linux ( red-hat ) Open VPNC Client connect to checkpoint or nortel VPN gateways?VPN client for linux machine + support checkpoint gatewayImport VPN config files to NetworkManager from command lineTrouble connecting to VPN using network-manager, while command line worksStart a VPN connection with PPTP protocol on command linestarting a docker service daemon breaks the vpn networkCan't connect to vpn with Network-managerVPN SSL Network Extender in FirefoxUsing Checkpoint VPN SSL Network Extender CLI with certificate

            Cannot Extend partition with GParted The 2019 Stack Overflow Developer Survey Results Are In Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern) 2019 Community Moderator Election ResultsCan't increase partition size with GParted?GParted doesn't recognize the unallocated space after my current partitionWhat is the best way to add unallocated space located before to Ubuntu 12.04 partition with GParted live?I can't figure out how to extend my Arch home partition into free spaceGparted Linux Mint 18.1 issueTrying to extend but swap partition is showing as Unknown in Gparted, shows proper from fdiskRearrange partitions in gparted to extend a partitionUnable to extend partition even though unallocated space is next to it using GPartedAllocate free space to root partitiongparted: how to merge unallocated space with a partition

            Marilyn Monroe Ny fiainany manokana | Jereo koa | Meny fitetezanafanitarana azy.