aboutsummaryrefslogtreecommitdiffstats
path: root/src/include
diff options
context:
space:
mode:
authorLaurent Bercot <ska-skaware@skarnet.org>2026-06-14 04:37:32 +0000
committerLaurent Bercot <ska-skaware@skarnet.org>2026-06-14 04:37:32 +0000
commit87b8fcabeecf2a9cff2ca596da54d6c1cf17d89f (patch)
treebc07d6d01afac944925d43108fda8b91ef2fe12f /src/include
parent958958d74337a6ddaf649968d188e768984100e0 (diff)
downloads6-rc-87b8fcabeecf2a9cff2ca596da54d6c1cf17d89f.tar.gz
Prepare for 0.7.0.0; lots of changes!
- s6-rc-bundle deleted. Changing bundles without recompiling is not supported anymore. (It works, but it incentivizes poor workflows; it is better to handle stuff at the source level and recompile when in doubt, that's what s6-frontend does.) - new db format, need to recompile and use s6-rc-format-upgrade on new live db - support for the reload-signal file in service directories - new reload scripts for oneshots (which is why the db format has changed) - new "s6-rc reload" command, calling s6-svc -l on longruns (which makes use of reload-signal, HUP by default) and the reload script on oneshots - the live state now tracks when a service has been explicitly brought up as opposed to by pulled by dependencies. Nothing uses the feature for now but now the tech is there for an auto-stop-if-unneeded feature.
Diffstat (limited to 'src/include')
-rw-r--r--src/include/s6-rc/s6rc-db.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/s6-rc/s6rc-db.h b/src/include/s6-rc/s6rc-db.h
index 0f03967..9b156f8 100644
--- a/src/include/s6-rc/s6rc-db.h
+++ b/src/include/s6-rc/s6rc-db.h
@@ -18,8 +18,8 @@
typedef struct s6rc_oneshot_s s6rc_oneshot_t, *s6rc_oneshot_t_ref ;
struct s6rc_oneshot_s
{
- uint32_t argc[2] ;
- uint32_t argv[2] ;
+ uint32_t argc[3] ;
+ uint32_t argv[3] ;
} ;
typedef struct s6rc_longrun_s s6rc_longrun_t, *s6rc_longrun_t_ref ;