From owner-cvs-all@FreeBSD.ORG Fri Jul 25 14:32:02 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 620C01065674; Fri, 25 Jul 2008 14:32:02 +0000 (UTC) (envelope-from ed@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 52ECB8FC16; Fri, 25 Jul 2008 14:32:02 +0000 (UTC) (envelope-from ed@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.2/8.14.2) with ESMTP id m6PEW2iR085097; Fri, 25 Jul 2008 14:32:02 GMT (envelope-from ed@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.2/8.14.1/Submit) id m6PEW2Kn085096; Fri, 25 Jul 2008 14:32:02 GMT (envelope-from ed@repoman.freebsd.org) Message-Id: <200807251432.m6PEW2Kn085096@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to ed@repoman.freebsd.org using -f From: Ed Schouten Date: Fri, 25 Jul 2008 14:31:00 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/conf files src/sys/kern tty.c tty_info.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Jul 2008 14:32:02 -0000 ed 2008-07-25 14:31:00 UTC FreeBSD src repository Modified files: sys/conf files sys/kern tty.c Added files: sys/kern tty_info.c Log: SVN rev 180801 on 2008-07-25 14:31:00Z by ed 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) Revision Changes Path 1.1317 +1 -0 src/sys/conf/files 1.281 +0 -269 src/sys/kern/tty.c 1.1 +317 -0 src/sys/kern/tty_info.c (new)