Comment a fine point, so it does not get lost when people borrow code

from FreeBSD for other purposes.
This commit is contained in:
Poul-Henning Kamp 2010-03-15 08:58:35 +00:00
parent 5cf13d9573
commit 156a1661a6

View File

@ -64,6 +64,10 @@ daemon(nochdir, noclose)
case 0:
break;
default:
/*
* A fine point: _exit(0), not exit(0), to avoid triggering
* atexit(3) processing
*/
_exit(0);
}