From owner-cvs-all@FreeBSD.ORG Sat Jun 14 10:45:47 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 9D0B91065683; Sat, 14 Jun 2008 10:45:47 +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 8DF678FC0A; Sat, 14 Jun 2008 10:45:47 +0000 (UTC) (envelope-from ed@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m5EAjlkb067031; Sat, 14 Jun 2008 10:45:47 GMT (envelope-from ed@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m5EAjlNw067030; Sat, 14 Jun 2008 10:45:47 GMT (envelope-from ed@repoman.freebsd.org) Message-Id: <200806141045.m5EAjlNw067030@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to ed@repoman.freebsd.org using -f From: Ed Schouten Date: Sat, 14 Jun 2008 10:42:18 +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 ObsoleteFiles.inc src/include sgtty.h src/lib/libcompat Makefile src/lib/libcompat/4.1 gtty.c stty.3 stty.c src/sys/sys ioctl.h ioctl_compat.h param.h ttychars.h ttydev.h 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: Sat, 14 Jun 2008 10:45:47 -0000 ed 2008-06-14 10:42:18 UTC FreeBSD src repository Modified files: . ObsoleteFiles.inc include sgtty.h lib/libcompat Makefile sys/sys ioctl.h ioctl_compat.h param.h Removed files: lib/libcompat/4.1 gtty.c stty.3 stty.c sys/sys ttychars.h ttydev.h Log: SVN rev 179784 on 2008-06-14 10:42:18Z by ed Turn sgtty into a binary-only compatibility interface. sgtty was the original interface to configure terminal attributes on my UNIX-like operating systems. It has been deprecated by the POSIX termios interface, which is implemented in almost any modern system. An advantage of turning this into a binary compatibility interface, is that we can now eventually remove the COMPAT_43TTY switch from kernel configurations. This removes many ioctl()'s from the TTY layer. While there, increase the __FreeBSD_version, which may be useful for the people working on the Ports tree. Reviewed by: kib Approved by: philip (mentor) Revision Changes Path 1.143 +5 -0 src/ObsoleteFiles.inc 1.2 +3 -39 src/include/sgtty.h 1.6 +0 -52 src/lib/libcompat/4.1/gtty.c (dead) 1.11 +0 -94 src/lib/libcompat/4.1/stty.3 (dead) 1.6 +0 -52 src/lib/libcompat/4.1/stty.c (dead) 1.25 +2 -3 src/lib/libcompat/Makefile 1.16 +0 -11 src/sys/sys/ioctl.h 1.11 +7 -15 src/sys/sys/ioctl_compat.h 1.356 +1 -1 src/sys/sys/param.h 1.11 +0 -62 src/sys/sys/ttychars.h (dead) 1.13 +0 -62 src/sys/sys/ttydev.h (dead)