Comment a fine point, so it does not get lost when people borrow code
from FreeBSD for other purposes.
This commit is contained in:
parent
5cf13d9573
commit
156a1661a6
@ -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);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user