Do zombie processes still occupy an entry in the parent's children-list?

66 Views Asked by At

I'm currently working on a module of linux kernel for univeristy. As part of the assignment I have to iterate over all the children of the current processes (to check the value of a custom field I added) , using the children list in it's task_struct.

Are zombie process's still on that list? If yes, can I somehow ignore them while iterating?

Thank you

1

There are 1 best solutions below

0
On

You can check the task_struct's item state

struct task_struct {
    u64 curr_chain_key;
    int lockdep_depth;
    unsigned int lockdep_recursion;
    struct held_lock held_locks[MAX_LOCK_DEPTH];
    gfp_t lockdep_reclaim_gfp;
    int pid;
    int state;
    char comm[17];
};