From owner-cvs-all@FreeBSD.ORG Sat Apr 2 12:33:31 2005 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 C750816A4DB; Sat, 2 Apr 2005 12:33:29 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3293F43D1F; Sat, 2 Apr 2005 12:33:29 +0000 (GMT) (envelope-from das@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j32CXTI1084780; Sat, 2 Apr 2005 12:33:29 GMT (envelope-from das@repoman.freebsd.org) Received: (from das@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j32CXTdC084779; Sat, 2 Apr 2005 12:33:29 GMT (envelope-from das) Message-Id: <200504021233.j32CXTdC084779@repoman.freebsd.org> From: David Schultz Date: Sat, 2 Apr 2005 12:33:29 +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/sys errno.h src/lib/libc/gen errlst.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: Sat, 02 Apr 2005 12:33:32 -0000 das 2005-04-02 12:33:29 UTC FreeBSD src repository Modified files: sys/sys errno.h lib/libc/gen errlst.c Log: Add some missing errnos from POSIX. Nothing in FreeBSD generates these at the moment, but applications that test for them will now have a better chance of compiling. I have intentionally omitted errnos that are only good for STREAMS, since apps that use STREAMS won't compile anyway. The exception is EPROTO, which was apparently intended for STREAMS, but worth having anyway because Linux (mis)uses it for other things. Revision Changes Path 1.8 +5 -0 src/lib/libc/gen/errlst.c 1.28 +7 -1 src/sys/sys/errno.h