diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-06-18 04:44:53 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-06-18 04:44:53 +0200 |
commit | eb22ac37f3e07b9c49a3f8fdc8cc02631faabcb4 (patch) | |
tree | 2446c4f33cd0990c97e6088850c43ad4b266ce73 /src/util.h | |
parent | 55293c152a0c8a8720461a26e2d6e24b5612d1f0 (diff) |
systemctl: add /dev/initctl fallback
Diffstat (limited to 'src/util.h')
-rw-r--r-- | src/util.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/util.h b/src/util.h index e371f0b9e5..14c28597ec 100644 --- a/src/util.h +++ b/src/util.h @@ -246,7 +246,8 @@ int sigaction_many(const struct sigaction *sa, ...); int close_pipe(int p[]); -ssize_t loop_read(int fd, void *buf, size_t nbytes); +ssize_t loop_read(int fd, void *buf, size_t nbytes, bool do_poll); +ssize_t loop_write(int fd, const void *buf, size_t nbytes, bool do_poll); int path_is_mount_point(const char *path); |