commit 915bbfedc48dc5793db0594aabdd3d7c9286c0b7 parent 8a6b34e8bb08d0d00eb3d4fe4a8f22ab34d5177a Author: Friedel Schön <[email protected]> Date: Fri, 19 May 2023 12:15:16 +0200 add state to docs Diffstat:
M | docs/internal/serialize.txt | | | 20 | ++++++++++---------- |
1 file changed, 10 insertions(+), 10 deletions(-)
diff --git a/docs/internal/serialize.txt b/docs/internal/serialize.txt @@ -29,16 +29,16 @@ HS = has log service (in struct is pointer but stored as (void*) 1 or (void*) 0) STATE ----- -0 = inactive -1 = setup -2 = starting -3 = active_dummy -4 = active_foreground -5 = active_background -6 = active_pid -7 = finishing -8 = stopping -9 = dead +0 = inactive - is not enabled and does nothing +1 = setup - ./setup is running atm +2 = starting - ./start is running atm +3 = active_dummy - service is considered as started but does nothing +4 = active_foreground - ./run is running +5 = active_background - ./start is done and ./stop is not called yet +6 = active_pid - ./start is done and ./pid is not killed yet +7 = finishing - ./finish is running +8 = stopping - ./stop is running +9 = dead - was enabled but failed too much or another error appeared