From owner-svn-src-all@FreeBSD.ORG Wed Mar 20 09:18:58 2013 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 2025CC0A; Wed, 20 Mar 2013 09:18:58 +0000 (UTC) (envelope-from glebius@FreeBSD.org) Received: from cell.glebius.int.ru (glebius.int.ru [81.19.69.10]) by mx1.freebsd.org (Postfix) with ESMTP id 7E5078A9; Wed, 20 Mar 2013 09:18:56 +0000 (UTC) Received: from cell.glebius.int.ru (localhost [127.0.0.1]) by cell.glebius.int.ru (8.14.6/8.14.6) with ESMTP id r2K9IuJw089526; Wed, 20 Mar 2013 13:18:56 +0400 (MSK) (envelope-from glebius@FreeBSD.org) Received: (from glebius@localhost) by cell.glebius.int.ru (8.14.6/8.14.6/Submit) id r2K9IueA089525; Wed, 20 Mar 2013 13:18:56 +0400 (MSK) (envelope-from glebius@FreeBSD.org) X-Authentication-Warning: cell.glebius.int.ru: glebius set sender to glebius@FreeBSD.org using -f Date: Wed, 20 Mar 2013 13:18:56 +0400 From: Gleb Smirnoff To: Jilles Tjoelker Subject: Re: svn commit: r248534 - in head: lib/libc/sys share/man/man4 sys/kern sys/sys Message-ID: <20130320091856.GI76816@FreeBSD.org> References: <201303192058.r2JKwIwg039788@svn.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: <201303192058.r2JKwIwg039788@svn.freebsd.org> User-Agent: Mutt/1.5.21 (2010-09-15) Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Mar 2013 09:18:58 -0000 On Tue, Mar 19, 2013 at 08:58:18PM +0000, Jilles Tjoelker wrote: J> Author: jilles J> Date: Tue Mar 19 20:58:17 2013 J> New Revision: 248534 J> URL: http://svnweb.freebsd.org/changeset/base/248534 J> J> Log: J> Implement SOCK_CLOEXEC, SOCK_NONBLOCK and MSG_CMSG_CLOEXEC. J> J> This change allows creating file descriptors with close-on-exec set in some J> situations. SOCK_CLOEXEC and SOCK_NONBLOCK can be OR'ed in socket() and J> socketpair()'s type parameter, and MSG_CMSG_CLOEXEC to recvmsg() makes file J> descriptors (SCM_RIGHTS) atomically close-on-exec. J> J> The numerical values for SOCK_CLOEXEC and SOCK_NONBLOCK are as in NetBSD. J> MSG_CMSG_CLOEXEC is the first free bit for MSG_*. J> J> The SOCK_* flags are not passed to MAC because this may cause incorrect J> failures and can be done later via fcntl() anyway. On the other hand, audit J> is expected to cope with the new flags. J> J> For MSG_CMSG_CLOEXEC, unp_externalize() is extended to take a flags J> argument. IMO, it won't hurt if changes like this (bringing in new functionality) would bump __FreeBSD_version. -- Totus tuus, Glebius.