mirror of
https://github.com/opnsense/src.git
synced 2026-04-21 22:27:47 -04:00
Create the devd thread after we have called daemon(). Otherwise, it would
be killed when the parent exits. Submitted by: Rudolf Cejka <cejkar / fit.vutbr.cz>
This commit is contained in:
parent
c395e805cd
commit
33a00fc0b1
1 changed files with 3 additions and 3 deletions
|
|
@ -488,9 +488,6 @@ main(int argc, char * argv[])
|
|||
signal(SIGTERM, handle_sigs);
|
||||
signal(SIGPIPE, SIG_IGN);
|
||||
|
||||
/* Decide whether to use ACPI or APM to read the AC line status. */
|
||||
acline_init();
|
||||
|
||||
/* Run in the background unless in verbose mode. */
|
||||
if (!vflag) {
|
||||
pid_t otherpid;
|
||||
|
|
@ -512,6 +509,9 @@ main(int argc, char * argv[])
|
|||
pidfile_write(pfh);
|
||||
}
|
||||
|
||||
/* Decide whether to use ACPI or APM to read the AC line status. */
|
||||
acline_init();
|
||||
|
||||
/* Main loop. */
|
||||
for (;;) {
|
||||
/* Check status every few milliseconds. */
|
||||
|
|
|
|||
Loading…
Reference in a new issue