From owner-cvs-all@FreeBSD.ORG Wed Dec 7 23:57:51 2005 Return-Path: X-Original-To: cvs-all@freebsd.org 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 88B9E16A420; Wed, 7 Dec 2005 23:57:51 +0000 (GMT) (envelope-from ambrisko@ambrisko.com) Received: from mail.ambrisko.com (mail.ambrisko.com [64.174.51.43]) by mx1.FreeBSD.org (Postfix) with ESMTP id 80B3243D75; Wed, 7 Dec 2005 23:57:46 +0000 (GMT) (envelope-from ambrisko@ambrisko.com) Received: from server2.ambrisko.com (HELO www.ambrisko.com) ([192.168.1.2]) by mail.ambrisko.com with ESMTP; 07 Dec 2005 15:57:46 -0800 Received: from ambrisko.com (localhost [127.0.0.1]) by www.ambrisko.com (8.12.11/8.12.9) with ESMTP id jB7Nvj0o083879; Wed, 7 Dec 2005 15:57:45 -0800 (PST) (envelope-from ambrisko@ambrisko.com) Received: (from ambrisko@localhost) by ambrisko.com (8.12.11/8.12.11/Submit) id jB7Nvjwx083878; Wed, 7 Dec 2005 15:57:45 -0800 (PST) (envelope-from ambrisko) From: Doug Ambrisko Message-Id: <200512072357.jB7Nvjwx083878@ambrisko.com> In-Reply-To: <43977536.70202@freebsd.org> To: David Xu Date: Wed, 7 Dec 2005 15:57:45 -0800 (PST) X-Mailer: ELM [version 2.4ME+ PL94b (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII Cc: cvs-src@freebsd.org, src-committers@freebsd.org, Doug Ambrisko , cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/sys signal.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: Wed, 07 Dec 2005 23:57:51 -0000 David Xu writes: | 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? | > | 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. Sounds good then. I'll test it out in a couple of days if I don't forget. Thanks, Doug A.