diff options
author | Martin Pitt <martin.pitt@ubuntu.com> | 2015-02-17 11:22:16 +0100 |
---|---|---|
committer | Martin Pitt <martin.pitt@ubuntu.com> | 2015-02-17 11:22:16 +0100 |
commit | e735f4d4eafc8c8c296cefc8228cf91c3fcfe822 (patch) | |
tree | 6626785ac2b212cc52282387a0a0d8a20fee8db2 /src/systemd/sd-daemon.h | |
parent | f47781d88ca6bf69d6b1dd0703b2b283482e5c09 (diff) | |
download | systemd-e735f4d4eafc8c8c296cefc8228cf91c3fcfe822.tar.gz |
Imported Upstream version 219
Diffstat (limited to 'src/systemd/sd-daemon.h')
-rw-r--r-- | src/systemd/sd-daemon.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/systemd/sd-daemon.h b/src/systemd/sd-daemon.h index 351b4e59c4..b878b4d8a6 100644 --- a/src/systemd/sd-daemon.h +++ b/src/systemd/sd-daemon.h @@ -190,6 +190,12 @@ int sd_is_mq(int fd, const char *path); timestamps to detect failed services. Also see sd_watchdog_enabled() below. + FDSTORE=1 Store the file descriptors passed along with the + message in the per-service file descriptor store, + and pass them to the main process again on next + invocation. This variable is only supported with + sd_pid_notify_with_fds(). + Daemons can choose to send additional variables. However, it is recommended to prefix variable names not listed above with X_. @@ -243,6 +249,13 @@ int sd_pid_notify(pid_t pid, int unset_environment, const char *state); int sd_pid_notifyf(pid_t pid, int unset_environment, const char *format, ...) _sd_printf_(3,4); /* + Similar to sd_pid_notify(), but also passes the specified fd array + to the service manager for storage. This is particularly useful for + FDSTORE=1 messages. +*/ +int sd_pid_notify_with_fds(pid_t pid, int unset_environment, const char *state, const int *fds, unsigned n_fds); + +/* Returns > 0 if the system was booted with systemd. Returns < 0 on error. Returns 0 if the system was not booted with systemd. Note that all of the functions above handle non-systemd boots just |