From owner-cvs-src@FreeBSD.ORG Wed Dec 7 23:49:53 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from [127.0.0.1] (localhost [127.0.0.1]) by hub.freebsd.org (Postfix) with ESMTP id 7E51016A41F; Wed, 7 Dec 2005 23:49:52 +0000 (GMT) (envelope-from davidxu@freebsd.org) Message-ID: <43977536.70202@freebsd.org> Date: Thu, 08 Dec 2005 07:50:14 +0800 From: David Xu User-Agent: Mozilla/5.0 (X11; U; FreeBSD amd64; en-US; rv:1.7.10) Gecko/20050806 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Doug Ambrisko References: <200512072116.jB7LGtFG075170@ambrisko.com> In-Reply-To: <200512072116.jB7LGtFG075170@ambrisko.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/sys signal.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Dec 2005 23:49:53 -0000 Doug Ambrisko wrote: >David Xu writes: >| David Xu wrote: >| > davidxu 2005-12-06 06:02:35 UTC >| > >| > FreeBSD src repository >| > >| > Modified files: >| > sys/sys signal.h >| > Log: >| > o Add some pad fields into struct sigevent for future extension. >| > (suggested by alfred@) >| > o Reuse si_band field in struct __siginfo, add a mqd member which will >| > be used by mqueue. >| > o Add code SI_KERNEL to indicate a signal is queued by kernel. >| > >| > Revision Changes Path >| > 1.54 +14 -2 src/sys/sys/signal.h >| >| You have to rebuild world and your program if you are using aio, >| signal queue, timer, or mqueue which are new to many FreeBSD >| people. ;-) > >Does this include people running FreeBSD 4.X compiled programs on -current? > >Doug A. > > > > 4.x, 5.x and 6.x binary should run, I don't think I broke the binary compatible, I patched kernel aio to keep the binary compatible. Except aio, all the POSIX extensions here only exist in -CURRENT, before 7.0 release, I can change them without binary compatible problem. David Xu