diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-04-13 02:06:27 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-04-13 02:06:27 +0200 |
commit | 80876c20f64f87765242bc35895977ab6a855729 (patch) | |
tree | fdb82b57685c706f99fde5659d350b1d3b381eda /util.h | |
parent | 4112df163517478207526e0d3e7278ab1acf1f9f (diff) |
rework tty handling
We now make sure to run all services in their own session, possibly with
a controlling terminal.
This also extends the service and socket state machines a little.
Diffstat (limited to 'util.h')
-rw-r--r-- | util.h | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -27,6 +27,7 @@ #include <sys/time.h> #include <stdbool.h> #include <stdlib.h> +#include <stdio.h> typedef uint64_t usec_t; @@ -200,6 +201,16 @@ bool fstype_is_network(const char *fstype); int chvt(int vt); +int read_one_char(FILE *f, char *ret, bool *need_nl); +int ask(char *ret, const char *replies, const char *text, ...); + +int reset_terminal(int fd); +int open_terminal(const char *name, int mode); +int acquire_terminal(const char *name, bool fail, bool force); +int release_terminal(void); + +int flush_fd(int fd); + extern char * __progname; const char *ioprio_class_to_string(int i); |