http://bugzilla.novell.com/show_bug.cgi?id=584573 http://bugzilla.novell.com/show_bug.cgi?id=584573#c6 Dr. Werner Fink <werner@novell.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |werner@novell.com --- Comment #6 from Dr. Werner Fink <werner@novell.com> 2010-05-20 11:29:37 UTC --- IMHO the daemon who has startded lxdm-greeter-gtk (which is lxdm AFAICS) should stop also it. This is done normally in that way that a variable is used for that, e.g. volatile sig_atomic_t stopped = 0; static void sighandle(int sig __attribute__((unused))) { stopped = 1; } int main() { if (chkpidfile()) exit(1); daemon(0, 0); atexit(rmpidfile); dopidfile(); signal(SIGTERM, sighandle); while (!stopped) { do_job(); } rmchilds(); } -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.