summaryrefslogtreecommitdiffstats
path: root/src/udev/udev-worker.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* udev: refuse too short timeout valueYu Watanabe2023-12-221-0/+3
| | | | | | | | Setting zero or too short timeout for each uevent is meaningless, and causes the system fails to boot. Let's refuse such values. Also, delaying execution of RUN= commands too long also makes many uevents enter the failed state. So, let's refuse such misconfiguration.
* udev: split-out worker code from udevd.cYu Watanabe2023-07-311-0/+52
While doing that, the Manager object allocated by the main process is now _not_ freed in the spawned worker process, to follow our usual coding style. See discussion in #24043.