diff options
author | Cedric Le Goater <clg@fr.ibm.com> | 2006-12-08 05:37:55 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.osdl.org> | 2006-12-08 11:28:51 -0500 |
commit | 1ec320afdc9552c92191d5f89fcd1ebe588334ca (patch) | |
tree | e526fb29f9487f1ea34aa9ccdf14c318aea2159f /drivers/char/tty_io.c | |
parent | 937949d9edbf4049bd41af6c9f92c26280584564 (diff) |
[PATCH] add process_session() helper routine: deprecate old field
Add an anonymous union and ((deprecated)) to catch direct usage of the
session field.
[akpm@osdl.org: fix various missed conversions]
[jdike@addtoit.com: fix UML bug]
Signed-off-by: Jeff Dike <jdike@addtoit.com>
Cc: Cedric Le Goater <clg@fr.ibm.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/char/tty_io.c')
-rw-r--r-- | drivers/char/tty_io.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/char/tty_io.c b/drivers/char/tty_io.c index 4ebba7ca1dc9..48cee2004e97 100644 --- a/drivers/char/tty_io.c +++ b/drivers/char/tty_io.c | |||
@@ -3855,7 +3855,7 @@ EXPORT_SYMBOL(proc_clear_tty); | |||
3855 | void __proc_set_tty(struct task_struct *tsk, struct tty_struct *tty) | 3855 | void __proc_set_tty(struct task_struct *tsk, struct tty_struct *tty) |
3856 | { | 3856 | { |
3857 | if (tty) { | 3857 | if (tty) { |
3858 | tty->session = tsk->signal->session; | 3858 | tty->session = process_session(tsk); |
3859 | tty->pgrp = process_group(tsk); | 3859 | tty->pgrp = process_group(tsk); |
3860 | } | 3860 | } |
3861 | tsk->signal->tty = tty; | 3861 | tsk->signal->tty = tty; |