diff options
| author | Laurent Bercot <ska-skaware@skarnet.org> | 2025-06-18 15:50:50 +0000 |
|---|---|---|
| committer | Laurent Bercot <ska@appnovation.com> | 2025-06-18 15:50:50 +0000 |
| commit | 4fca7a92b9eeaba9c327ca8b257b224c5c03e79b (patch) | |
| tree | ac1cfe138b00bcc9ad8e6c806ca37109a42f3f54 /src/libs6rc/s6rc_live_state_size.c | |
| parent | 04cf7b22ae8b071287f70579a712d4fa17c3dabb (diff) | |
| download | s6-rc-4fca7a92b9eeaba9c327ca8b257b224c5c03e79b.tar.gz | |
Add s6rc_live_state functions
Signed-off-by: Laurent Bercot <ska@appnovation.com>
Diffstat (limited to 'src/libs6rc/s6rc_live_state_size.c')
| -rw-r--r-- | src/libs6rc/s6rc_live_state_size.c | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/src/libs6rc/s6rc_live_state_size.c b/src/libs6rc/s6rc_live_state_size.c new file mode 100644 index 0000000..3dd8b67 --- /dev/null +++ b/src/libs6rc/s6rc_live_state_size.c @@ -0,0 +1,30 @@ +/* ISC license. */ + +#include <stdint.h> +#include <string.h> + +#include <skalibs/djbunix.h> + +#include <s6-rc/s6rc-db.h> +#include <s6-rc/s6rc-utils.h> + +int s6rc_live_state_size (char const *live, uint32_t *nlong, uint32_t *nshort) +{ + s6rc_db_t db ; + int fd ; + size_t livelen = strlen(live) ; + char fn[livelen + 10] ; + memcpy(fn, live, livelen) ; + memcpy(fn + livelen, "/compiled", 10) ; + fd = openc_readb(fn) ; + if (fd == -1) return 0 ; + if (!s6rc_db_read_sizes(fd, &db)) + { + fd_close(fd) ; + return 0 ; + } + fd_close(fd) ; + *nlong = db.nlong ; + *nshort = db.nshort ; + return 1 ; +} |
