aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/daemon
Commit message (Expand)AuthorAgeFilesLines
* daemon(8): Add "--output-file -o" to list of options enabling supervision modeAndre Albsmeier2026-04-121-0/+1
* daemon: Add option for output file modeMichael Osipov2026-02-072-9/+36
* daemon: tests: add a test for missed SIGTERMKyle Evans2024-11-191-0/+38
* daemon: stop rebuilding the kqueue every restart of the childKyle Evans2024-11-191-20/+101
* daemon: truncate the pidfile when we're waiting to restart childKyle Evans2024-11-192-2/+35
* Update Makefile.depend filesSimon J. Gerraty2024-10-141-0/+10
* Remove residual blank line at start of MakefileWarner Losh2024-07-152-2/+0
* daemon: Add -C (--restart-count) optionJuraj Lutter2024-05-222-4/+40
* daemon: fix -R to enable supervision modeMathieu2024-04-141-0/+1
* daemon: Prefer sys/cdefs.h __unreachable over the builtinCollin Funk2024-04-121-1/+1
* daemon(8): handle case of waitpid() returning without exited childKonstantin Belousov2024-03-201-5/+9
* daemon: fix recent style regressionsKyle Evans2023-12-271-2/+5
* daemon: separate pipe_fd[2] into pipe_rd and pipe_wrIhor Antonov2023-12-271-19/+25
* daemon: replace memchr with memrchrIhor Antonov2023-12-271-4/+8
* daemon: move buffer into daemon_stateIhor Antonov2023-12-271-19/+21
* daemon: remove redundant parameter from listen_child()Ihor Antonov2023-12-271-9/+5
* daemon: fix clang-tidy warningsIhor Antonov2023-12-272-13/+16
* usr.sbin: Automated cleanup of cdefs and other formattingWarner Losh2023-11-271-1/+0
* daemon: Disable stdio buffering.Dag-Erling Smørgrav2023-10-061-0/+1
* daemon.8: Document -u sets HOME, USER, and SHELLMateusz Piotrowski2023-09-181-1/+6
* daemon.8: Sort options in DESCRIPTIONMateusz Piotrowski2023-09-181-48/+48
* daemon.8: Use Cm where appropriateMateusz Piotrowski2023-09-181-10/+28
* daemon.8: Use Dv for signal namesMateusz Piotrowski2023-09-181-3/+8
* Remove $FreeBSD$: two-line nroff patternWarner Losh2023-08-161-2/+0
* Remove $FreeBSD$: one-line sh patternWarner Losh2023-08-164-5/+0
* Remove $FreeBSD$: one-line .c patternWarner Losh2023-08-161-2/+0
* spdx: The BSD-2-Clause-FreeBSD identifier is obsolete, drop -FreeBSDWarner Losh2023-05-121-1/+1
* daemon: EINTR from kevent(2) is not a fatal errorKyle Evans2023-05-051-0/+2
* Update/fix Makefile.depend for userlandSimon J. Gerraty2023-04-191-1/+0
* daemon: use kqueue for all eventsIhor Antonov2023-04-141-269/+239
* daemon: reformat longoptsKyle Evans2023-03-231-17/+17
* daemon: decouple init logic from main loopIhor Antonov2023-03-231-86/+109
* daemon: move signal setup into a functionIhor Antonov2023-03-211-63/+79
* daemon: kill off some stray blank linesKyle Evans2023-03-181-3/+0
* daemon: remove unnecessary memset in daemon_state_init()Ihor Antonov2023-03-181-1/+0
* daemon: repace goto exit with daemon_terminate()Ihor Antonov2023-03-181-25/+40
* daemon: move variables into struct daemon_stateIhor Antonov2023-03-121-134/+154
* daemon: set supervise_enabled during argument processingIhor Antonov2023-03-031-23/+31
* daemon: decouple restart variableIhor Antonov2023-03-031-9/+11
* daemon: add braces to while loopIhor Antonov2023-03-031-16/+17
* daemon: simplify if/else chainIhor Antonov2023-03-031-13/+21
* daemon: change type of listen_child() to C99 boolIhor Antonov2023-03-031-10/+10
* daemon: flatten and simplify fork() logicIhor Antonov2023-03-031-24/+29
* daemon: style changesIhor Antonov2023-03-031-35/+40
* daemon: more human-friendly variable namesIhor Antonov2023-03-021-47/+47
* daemon: move syslog facility and syslog tag into log_paramsIhor Antonov2023-03-021-6/+8
* daemon: deduplicate log_params varaiblesIhor Antonov2023-03-021-48/+44
* daemon: make log_reopen variable a boolIhor Antonov2023-03-021-2/+2
* daemon: make dosyslog variable a bool and give it a better nameIhor Antonov2023-03-021-12/+12
* daemon: add supervision_enabled varIhor Antonov2023-03-021-10/+25