diff options
author | ed <ed@FreeBSD.org> | 2008-07-25 14:31:00 +0000 |
---|---|---|
committer | ed <ed@FreeBSD.org> | 2008-07-25 14:31:00 +0000 |
commit | c9af5459f4b4a268616eee31a55b4ff62f3f3686 (patch) | |
tree | c1fa834b67619c424c441f54a2d0e531186d4902 /sys/conf | |
parent | 003d76444ba4c06090677236376e77a68b6926ec (diff) | |
download | FreeBSD-src-c9af5459f4b4a268616eee31a55b4ff62f3f3686.zip FreeBSD-src-c9af5459f4b4a268616eee31a55b4ff62f3f3686.tar.gz |
Move ttyinfo() into its own C file.
The ttyinfo() routine generates the fancy output when pressing ^T. Right
now it is stored in tty.c. In the MPSAFE TTY code it is already stored
in tty_info.c. To make integration of the MPSAFE TTY code a little
easier, take the same approach.
This makes the TTY code a little bit more readable, because having the
proc_*/thread_* routines in tty.c is very distractful.
Approved by: philip (mentor)
Diffstat (limited to 'sys/conf')
-rw-r--r-- | sys/conf/files | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/conf/files b/sys/conf/files index 4ca36e1..c2e52bf 100644 --- a/sys/conf/files +++ b/sys/conf/files @@ -1659,6 +1659,7 @@ kern/tty.c standard kern/tty_compat.c optional compat_43tty kern/tty_conf.c standard kern/tty_cons.c standard +kern/tty_info.c standard kern/tty_pts.c optional pty kern/tty_pty.c optional pty kern/tty_tty.c standard |