diff options
author | Michael I. Bushnell <mib@gnu.org> | 1996-07-17 00:49:22 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1996-07-17 00:49:22 +0000 |
commit | 2f8b10f5ce441e77af9cfc51f31298350a62f814 (patch) | |
tree | 43d72d417589939eb146e8679770ce2a566e509b /term | |
parent | b4992e9e89a0763493f9c98621540805039b0d24 (diff) |
(term_owner, term_group, term_mode): New variables.
Diffstat (limited to 'term')
-rw-r--r-- | term/term.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/term/term.h b/term/term.h index 0c469809..954fb73c 100644 --- a/term/term.h +++ b/term/term.h @@ -113,6 +113,15 @@ int remote_input_mode; /* External processing mode */ int external_processing; +/* Terminal owner */ +uid_t term_owner; + +/* Terminal group */ +uid_t term_group; + +/* Terminal mode */ +mode_t term_mode; + /* Functions a bottom half defines */ struct bottomhalf |