▲ | ape4 a day ago | |||||||||||||||||||||||||
Yeah, I thought systemd relied very heavily on Linux-native things like cgroups. | ||||||||||||||||||||||||||
▲ | netbsdusers a day ago | parent | next [-] | |||||||||||||||||||||||||
Systemd uses groups for two things: for tracking processes other than direct children of the service manager, and for imposing resource limitations. Both can be done with other mechanisms, like kqueue's EVFILT_PROC and login classes respectively. But my experience in any case was that hacking up systemd to build and run under BSD it didn't need cgroups at all for basic running. Supervision of `Type=simple` and `oneshot` services worked fine. It wasn't particularly surprising to see this as cgroups really aren't ideal as a tracking mechanism - under cgroups v1, you only had a "cgroup empty" notification available as far as tracking the lifetime of processes within a cgroup, and even that was unreliable and could be left undelivered! So systemd used them to augment a more traditional process supervisor. That's why Pottering insisted on having it be PID 1, and got subreapers added to Linux for the per user systemd instances so that they could get the more traditional SIGCHLD based notification of process exits. | ||||||||||||||||||||||||||
| ||||||||||||||||||||||||||
▲ | sunshine-o a day ago | parent | prev | next [-] | |||||||||||||||||||||||||
This is what I was wondering when I searched and found this project: was systemd designed in a way it would inevitably leave behind the BSDs? Because we always assume the BSDs rejected systemd but it might just be that they were put in a situation where they had no choice. | ||||||||||||||||||||||||||
| ||||||||||||||||||||||||||
▲ | zokier a day ago | parent | prev [-] | |||||||||||||||||||||||||
They implemented their own cgroups-like thing with fuse https://github.com/InitWare/CGrpFS |