nina
nina
in the very rare case that lua OOMs and raises a panic case, we should ensure that no stack values (which could be managing heap pointers) with destructors are present,...
All allocations in the system should be done through Lua's allocator. Also, we should never `abort`, instead access to `lua_State` state should be ensured at all times in those contexts...
it might be handy to be able to specify a constraint that a service has to start before or after (like waits-for but without actually requesting the named service to...
I wonder if it would be worthwhile to implement another mechanism for readiness notification of services. Currently we can do that from the service itself using a file descriptor passed...
Hello, this is an initial port of libostree to use libsoup3. The reason for this is: 1) GNOME and webkit are migrating to libsoup3, and other upstreams should do so...
hold state for the UI - use it for e.g. scrollbars for better button-holding behavior
This restores test suite on Clang 17.
Let's say we have a service, `foo.target` and a service `foo` that is set as `before = foo.target`, and another service `bar` that has `depends-on = foo.target`. The order of...
dinit comes with a sample service set that can technically result in a bootable system, but it hardly makes full use of dinit's potential nor it provides something that would...
Right now if there is an unexpected case or error in early boot, dinit will dump a whole lot of stop messages, obscuring what actually failed. There is no way...