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 264 views
264 views asked Jun 30, 2019 by avibootz
1 answer 165 views
1 answer 248 views
248 views asked Aug 11, 2018 by avibootz
1 answer 232 views
232 views asked Aug 11, 2018 by avibootz
...