From owner-cvs-src@FreeBSD.ORG Fri Nov 12 13:23:47 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 87C6016A4CE; Fri, 12 Nov 2004 13:23:47 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 79C7943D45; Fri, 12 Nov 2004 13:23:47 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id iACDNlXh004195; Fri, 12 Nov 2004 13:23:47 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id iACDNlqF004194; Fri, 12 Nov 2004 13:23:47 GMT (envelope-from rwatson) Message-Id: <200411121323.iACDNlqF004194@repoman.freebsd.org> From: Robert Watson Date: Fri, 12 Nov 2004 13:23:47 +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/kern sysv_msg.c sysv_sem.c sysv_shm.c src/sys/sys msg.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 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: Fri, 12 Nov 2004 13:23:47 -0000 rwatson 2004-11-12 13:23:47 UTC FreeBSD src repository Modified files: sys/kern sysv_msg.c sysv_sem.c sysv_shm.c sys/sys msg.h Log: Second of several commits to allow kernel System V IPC data structures to be modified and extended without breaking the user space ABI: Use _kernel variants on _ds structures for System V sempahores, message queues, and shared memory. When interfacing with userspace, export only the _ds subsets of the _kernel data structures. A lot of search and replace. Define the message structure in the _KERNEL portion of msg.h so that it can be used by other kernel consumers, but not exposed to user space. Submitted by: Dandekar Hrishikesh Obtained from: TrustedBSD Project Sponsored by: DARPA, SPAWAR, McAfee Research Revision Changes Path 1.54 +126 -134 src/sys/kern/sysv_msg.c 1.71 +130 -127 src/sys/kern/sysv_sem.c 1.98 +88 -88 src/sys/kern/sysv_shm.c 1.18 +9 -0 src/sys/sys/msg.h