From owner-cvs-all@FreeBSD.ORG Fri Sep 17 11:43:35 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8A99F16A4CE; Fri, 17 Sep 2004 11:43:35 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6952043D58; Fri, 17 Sep 2004 11:43:35 +0000 (GMT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i8HBhZKR077007; Fri, 17 Sep 2004 11:43:35 GMT (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i8HBhZek077006; Fri, 17 Sep 2004 11:43:35 GMT (envelope-from phk) Message-Id: <200409171143.i8HBhZek077006@repoman.freebsd.org> From: Poul-Henning Kamp Date: Fri, 17 Sep 2004 11:43:35 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern tty.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 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, 17 Sep 2004 11:43:35 -0000 phk 2004-09-17 11:43:35 UTC FreeBSD src repository Modified files: sys/kern tty.c Log: Add ttyopen and ttyclose functions which will do the right stuff for most if not all of our tty drivers in the future. Centralizing this stuff enables us to remove about 100 lines of almost but not quite perfectly copy&paste code from each tty driver. Revision Changes Path 1.230 +97 -0 src/sys/kern/tty.c