From owner-cvs-src-old@FreeBSD.ORG Sun Sep 6 10:29:42 2009 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C42FD106566C for ; Sun, 6 Sep 2009 10:29:42 +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 B10228FC15 for ; Sun, 6 Sep 2009 10:29:42 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id n86ATg0Z046810 for ; Sun, 6 Sep 2009 10:29:42 GMT (envelope-from ed@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id n86ATgrK046809 for cvs-src-old@freebsd.org; Sun, 6 Sep 2009 10:29:42 GMT (envelope-from ed@repoman.freebsd.org) Message-Id: <200909061029.n86ATgrK046809@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to ed@repoman.freebsd.org using -f From: Ed Schouten Date: Sun, 6 Sep 2009 10:27:45 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man4 pts.4 pty.4 src/sys/dev/pty pty.c src/sys/kern tty_pts.c src/sys/sys tty.h X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Sep 2009 10:29:42 -0000 ed 2009-09-06 10:27:45 UTC FreeBSD src repository Modified files: share/man/man4 pts.4 pty.4 sys/dev/pty pty.c sys/kern tty_pts.c sys/sys tty.h Log: SVN rev 196886 on 2009-09-06 10:27:45Z by ed Move ptmx into pty(4). Now that pty(4) is a loadable kernel module, I'd better move /dev/ptmx in there as well. This means that pty(4) now provides almost all pseudo-terminal compatibility code. This means it's very easy to test whether applications use the proper library interfaces when allocating pseudo-terminals (namely posix_openpt and openpty). Revision Changes Path 1.5 +0 -9 src/share/man/man4/pts.4 1.21 +11 -2 src/share/man/man4/pty.4 1.2 +18 -0 src/sys/dev/pty/pty.c 1.38 +5 -20 src/sys/kern/tty_pts.c 1.116 +1 -0 src/sys/sys/tty.h