Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
rc_service_value_get
|
|
rc_service_schedule_start
|
|
|
|
|
|
|
|
|
|
rc_service_option_get
|
|
|
|
|
|
rc_deptree_
|
|
|
|
things with just the one call making is more efficient.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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);
|
|
the deptree should be regenerated if /etc/fstab has changed.
|
|
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.
|
|
|
|
|
|
|
|
|
|
#176198.
|
|
we can kill our children without the need for process groups which we cannot use as keyboard will not work in init.
|
|
|
|
|
|
|
|
|
|
|
|
rc_services_in_state for scheduled.
|