Re: Question regarding kernel_threads

2000-09-05 Thread Ulrich Drepper
[EMAIL PROTECTED] writes: > I'm currently thinking of adding a PF_NOZOMBIE flag to the process > flags which releases the process immeadiately instead of calling > exit_notify in do_exit in exit.c I think this should happen if the exit signal is zero. At least I would like to use it this way.

Question regarding kernel_threads

2000-09-05 Thread DJBARROW
Hi, I'm using kernel threads in my driver & they work fine however I'm getting left with zombie processes when they exit. As I have no parent process calling wait. I've tried attaching making init my parent process this doesn't appear to help. The new daemonize function in 2.3 doesn't fix this

Question regarding kernel_threads

2000-09-05 Thread DJBARROW
Hi, I'm using kernel threads in my driver they work fine however I'm getting left with zombie processes when they exit. As I have no parent process calling wait. I've tried attaching making init my parent process this doesn't appear to help. The new daemonize function in 2.3 doesn't fix this

Re: Question regarding kernel_threads

2000-09-05 Thread Ulrich Drepper
[EMAIL PROTECTED] writes: I'm currently thinking of adding a PF_NOZOMBIE flag to the process flags which releases the process immeadiately instead of calling exit_notify in do_exit in exit.c I think this should happen if the exit signal is zero. At least I would like to use it this way. --