diff options
author | Lennart Poettering <lennart@poettering.net> | 2011-05-18 01:07:31 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2011-05-18 01:07:36 +0200 |
commit | 6ea832a20700f5282c08c70f38422c6ab290a0b5 (patch) | |
tree | bcd9a7705c87f3828adf70938ec59cdcfe368e72 /src/missing.h | |
parent | 9131f660eedb29d18a29e6efff49c485e683c56c (diff) |
exec: hangup/reset/deallocate VTs in gettys
Explicitly disconnect all clients from a VT when a getty starts/finishes
(requires TIOCVHANGUP, available in 2.6.29).
Explicitly deallocate getty VTs in order to flush scrollback buffer.
Explicitly reset terminals to a defined state before spawning getty.
Diffstat (limited to 'src/missing.h')
-rw-r--r-- | src/missing.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/missing.h b/src/missing.h index f1dbb398e0..02b31b7434 100644 --- a/src/missing.h +++ b/src/missing.h @@ -76,6 +76,10 @@ #define AUDIT_SERVICE_STOP 1131 /* Service (daemon) stop */ #endif +#ifndef TIOCVHANGUP +#define TIOCVHANGUP 0x5437 +#endif + static inline int pivot_root(const char *new_root, const char *put_old) { return syscall(SYS_pivot_root, new_root, put_old); } |