Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,894 questions

51,825 answers

573 users

How to get process current and parent ID in C

1 Answer

0 votes
#include <stdio.h>
#include <sys/wait.h>
#include <unistd.h>

int main() {
    int id = fork();
    
    if (id == 0) {
        sleep(1);
    }
    printf("Current ID: %d, parent ID: %d\n", getpid(), getppid());
    
    int result = wait(NULL);
    
    if (result == -1) {
        printf("No children\n");
    } else {
        printf("finished execution\n");
    }
    
    return 0;
}



/*
run:

Current ID: 20, parent ID: 19
No children
Current ID: 19, parent ID: 8
finished execution

*/

 



answered Jan 5, 2021 by avibootz

Related questions

1 answer 237 views
237 views asked Jun 30, 2019 by avibootz
1 answer 139 views
1 answer 223 views
223 views asked Aug 11, 2018 by avibootz
1 answer 214 views
214 views asked Aug 11, 2018 by avibootz
...