Age | Commit message (Collapse) | Author |
|
|
|
list for ease of use.
|
|
|
|
a starting list as a first argument. Instead, use rc_strlist_join
to append or prepend the new list to an existing list.
|
|
char ** and return a pointer to the item added instead of the new
list head. This is so we can easily tell if the item was successfully
added or not instead of iterating through the list looking for it.
list = rc_strlist_add (list, item);
becomes
rc_strlist_add (&list, item);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
achieve the same goal (a loop + timeout). No longer put / at the end of directories, instead prefix like so RC_LIBDIR "/foo" to ensure more robust code.
|
|
|
|
|
|
a lot smaller.
|
|
|
|
|
|
If yes then we only use services in the boot and default runlevels,
regradless of service state.
If no then we take into account coldplugged services and the state
of currently running services.
Fixes #185640.
|
|
|
|
which also reduces our variable pollution.
|
|
|
|
|
|
we don't leak memory. To this extent, we now have the global boolean rc_in_plugin and the cleanup code can act accordingly.
|
|
|
|
|
|
and removes a gcc-4.2 warning
|
|
|
|
|
|
|
|
|
|
lock prefixed output.
|
|
|
|
RC_PREFIX="yes" will put the service name as a prefix to all output
made by the service. Thanks to Ciaran McCreesh for the idea.
|
|
parallel. RC_PARALLEL_STARTUP has been renamed to RC_PARALLEL.
|
|
|
|
we can kill our children without the need for process groups which we cannot use as keyboard will not work in init.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
support va_list in the future.
|
|
|
|
zero for default may freeze system.
|
|
|