diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2011-01-05 22:03:43 -0800 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2011-01-05 22:09:34 -0800 |
commit | 09f990a7c835d75f67cfe696a35e8c46e67c612f (patch) | |
tree | da69536cd225bad4028b01e88a0629bdca472dc1 /src/librc/rc.h.in | |
parent | 6df531d33d0f3c3cad8edcafdcd62525ca30fc1f (diff) |
Implement explicit selection of subsystem types.
- Fixes bugs #347583, #349389, both of which were triggered by cgroups
being detected as the LXC subsystem type.
- Makes it much easier to select "prefix" type.
- "rc -S" will now print a warning if you have not configured rc_sys in
/etc/rc.conf
- All other semantics of rc_sys are unchanged in this patch.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
Diffstat (limited to 'src/librc/rc.h.in')
-rw-r--r-- | src/librc/rc.h.in | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/librc/rc.h.in b/src/librc/rc.h.in index d9d04539..3d0ffb42 100644 --- a/src/librc/rc.h.in +++ b/src/librc/rc.h.in @@ -274,8 +274,19 @@ bool rc_service_daemons_crashed(const char *); #define RC_SYS_VSERVER "VSERVER" #define RC_SYS_XEN0 "XEN0" #define RC_SYS_XENU "XENU" + +/*! Returns the type of subsystem + * @return string from RC_SYS_* types or NULL if none detected */ const char *rc_sys(void); +/*! Returns the type of subsystem using old automatic code + * @return string from RC_SYS_* types or NULL if none detected */ +const char *rc_sys_v1(void); + +/*! Returns the type of subsystem using new rc.conf rc_sys value + * @return string from RC_SYS_* types or NULL if none detected */ +const char *rc_sys_v2(void); + /*! @name Dependency options * These options can change the services found by the rc_get_depinfo and * rc_get_depends functions. */ |