Minor cleanup: remove unnecessary aliases.
[oweals/dinit.git] / src / service.h
2018-01-11 Davin McCallSplit service.cc into multiple files.
2018-01-09 Davin McCallBig rename/namespace cleanup.
2018-01-08 Davin McCallProperly handle scripted service start interrupt.
2018-01-08 Davin McCallClean up warning in process_restart_timer.
2018-01-08 Davin McCallRename service_type (type) to service_type_t.
2018-01-08 Davin McCallAllow specifying service start timeout in service descr...
2018-01-07 Davin McCallImplement start timeout for services, default of 60...
2018-01-06 Davin McCallAdd "start-interruptible" service option.
2018-01-05 Davin McCallAllow for interrupting process startup (by sending...
2018-01-05 Davin McCallRefactoring: Move fields from service_record to base_pr...
2018-01-05 Davin McCallservice_record: encapsulation: make some members privat...
2017-12-31 Davin McCallRenamed 'start_ps_process' function to 'bring_up'.
2017-12-31 Davin McCallRename 'all_deps_stopped' function to 'bring_down'.
2017-12-31 Davin McCallMake do_start/do_stop protected instead of public.
2017-12-31 Davin McCallHandle fork+exec failure in a separate virtual method.
2017-12-28 Davin McCallFix potential issue stopping process services.
2017-12-27 Davin McCallVarious minor cleanups.
2017-12-26 Davin McCallbgproc_service: remove redundant initialisation from...
2017-09-30 Davin McCallSimplify dependency checking logic.
2017-09-30 Davin McCallAdd service set destructor.
2017-09-30 Davin McCallRe-work dependency specification for service_record...
2017-09-05 Davin McCallKeep all dependencies (soft and regular) in a single...
2017-07-04 Davin McCallMore camelCase to under_score renaming.
2017-07-04 Davin McCallVarious renaming of camelCase to underscored_name for...
2017-07-03 Davin McCallUse getpgid to determine process group of service process.
2017-06-29 Davin McCallbgprocess: eliminate doing_recovery field.
2017-06-27 Davin McCallservice descriptions: Implement the stop-timeout setting.
2017-06-27 Davin McCallservice: implement stop timeout / hard kill.
2017-06-26 Davin McCallservice: use recorded state to check whether we can...
2017-06-26 Davin McCallVarious renaming (from CamelCase to underscore_separated).
2017-06-25 Davin McCallFix child watch reservation.
2017-06-20 Davin McCallImprove handling of pid-file reading.
2017-06-19 Davin McCallRemove unneeded function parameter.
2017-06-17 Davin McCallIf a service stops and won't restart, release explicit...
2017-06-16 Davin McCallFix missing #include
2017-06-16 Davin McCallBeginnings of automated test suite.
2017-06-16 Davin McCallRefactoring: don't pass list via pointer.
2017-06-16 Davin McCallRefactoring: split loading service from directory into...
2017-06-16 Davin McCallRename ServiceState to service_state_t.
2017-06-16 Davin McCallRename ServiceIoWatcher to exec_status_pipe_watcher.
2017-06-15 Davin McCallRename various classes/functions for consistency.
2017-06-15 Davin McCallRename ServiceRecord to service_record for consistency
2017-06-12 Davin McCallFix issues with restart counting and start failure...
2017-06-12 Davin McCallFix console queue behavior (was broken by recent changes).
2017-06-12 Davin McCallOn interrupted start, unlink from console wait queue.
2017-06-12 Davin McCallFix potential issue of double-queueing for console...
2017-06-12 Davin McCallConvert various queues to instantiations of generic...
2017-06-11 Davin McCallService logic simplification/cleanup.
2017-06-06 Davin McCallAllow service start to be interrupted when waiting...
2017-06-06 Davin McCallMake service restart delay configurable (restart-delay...
2017-06-05 Davin McCallMake restart check interval configurable.
2017-06-05 Davin McCallLimit number of restarts within an interval
2017-06-03 Davin McCallFix: grant console correctly
2017-06-02 Davin McCallSeparate "runs-on-console" into runs-on- and starts...
2017-06-02 Davin McCallUse restart timer also for non-smooth-recovery restarts.
2017-06-01 Davin McCallMinor refactoring / code documentation.
2017-06-01 Davin McCallAdd a restart timer to limit restart rate.
2017-06-01 Davin McCallFix callback method name per Dasynq changes
2017-05-30 Davin McCallSimplify allDepStarted logic.
2017-05-30 Davin McCallservice record: move read_pid_file into bgproc_service
2017-05-30 Davin McCallservice_record: declare handle_exit_status as pure...
2017-05-29 Davin McCallRefactoring: create base_process_service
2017-05-29 Davin McCallFix various missing std::move's (which was an exception...
2017-05-29 Davin McCallBreak out scripted service as a separate class
2017-05-23 Davin McCallRefactoring.
2017-05-23 Davin McCallMinor cleanups.
2017-03-29 Davin McCallRework acquire/release handling.
2017-03-27 Davin McCallUpdate Dasynq library and API usage
2017-03-19 Davin McCallUpdate Dasynq library, and API usage throughout.
2017-03-19 Davin McCallRelease soft dependencies if they stop early.
2017-03-12 Davin McCallUpdate dasynq library, and make appropriate changes...
2016-11-09 Davin McCallCombine start/stop queues, and add propagation queue.
2016-11-08 Davin McCallCheck desired state == started before allowing service...
2016-06-26 Davin McCallAdd a "pass-cs-fd" service option, which passes a contr...
2016-06-23 Davin McCallClean up signal and fd handling around fork().
2016-06-23 Davin McCallImplement "list services" command in control protocol...
2016-06-19 Davin McCallnext_for_console was not being set null when a service...
2016-06-18 Davin McCallAdd a new service setting, "options", which can be...
2016-06-18 Davin McCallUpdate Dasynq, again, and update Dinit code to reflect...
2016-06-16 Davin McCallYet another Dasynq update
2016-06-16 Davin McCallPull in latest Dasynq, which means a massive amount...
2016-06-16 Davin McCallUse the start queue instead of starting services immedi...
2016-06-14 Davin McCallIntroduce a "stop queue" and "start queue" in ServiceSe...
2016-06-12 Davin McCallCode consistency and documentation update
2016-06-06 Davin McCallCode documentation - ServiceRecord and ServiceSet....
2016-06-05 Davin McCallRip out libev, replace with dasynq (new library written...
2016-01-19 Davin McCallUse non-blocking I/O and event notification for console...
2016-01-13 Davin McCallMake "pinStart" and "start", and "pinStop" and "stop...
2016-01-12 Davin McCallDuring shutdown, let process attrition occur naturally...
2016-01-11 Davin McCallFix stop(). Give it a boolean argument for 2 modes...
2016-01-11 Davin McCallRestore "restart" flag functionality. Services no longe...
2016-01-11 Davin McCallCleanups and refactoring.
2016-01-11 Davin McCallLargish re-work of how dependencies are handled. The...
2016-01-09 Davin McCallRefactoring, and one fix: stopping an already-stopped...
2016-01-09 Davin McCallIntroduce "explicitly started" state flag for services...
2016-01-07 Davin McCallRefactoring: remove unneeded method
2016-01-05 Davin McCallMove source files int src directory