diff options
author | Miles Bader <miles@gnu.org> | 1996-05-10 21:03:30 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 1996-05-10 21:03:30 +0000 |
commit | e27fce65d22689c5ac0fd7675c2aac7c08131365 (patch) | |
tree | 9be7e9e3203a0a344c0b45880b2623fa4a387be0 /proc | |
parent | 58ff328c15117a472ce2264b1c339aecea526552 (diff) |
(S_proc_get_tty): New function.
Diffstat (limited to 'proc')
-rw-r--r-- | proc/info.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/proc/info.c b/proc/info.c index abb3e78f..83955a42 100644 --- a/proc/info.c +++ b/proc/info.c @@ -656,3 +656,10 @@ S_proc_getlogin (struct proc *p, return 0; } +/* Implement proc_get_tty as described in <hurd/proc.defs>. */ +kern_return_t +S_proc_get_tty (struct proc *p, pid_t pid, + mach_port_t *tty, mach_msg_type_name_t *tty_type) +{ + return EOPNOTSUPP; /* XXX */ +} |