From owner-cvs-src@FreeBSD.ORG Fri Nov 12 13:21:40 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 30EE516A4CE; Fri, 12 Nov 2004 13:21:40 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2446C43D31; Fri, 12 Nov 2004 13:21:40 +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 iACDLeDk004082; Fri, 12 Nov 2004 13:21:40 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id iACDLeln004081; Fri, 12 Nov 2004 13:21:40 GMT (envelope-from rwatson) Message-Id: <200411121321.iACDLeln004081@repoman.freebsd.org> From: Robert Watson Date: Fri, 12 Nov 2004 13:21:40 +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 msg.h sem.h shm.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:21:40 -0000 rwatson 2004-11-12 13:21:40 UTC FreeBSD src repository Modified files: sys/sys msg.h sem.h shm.h Log: First of several commits to allow kernel System V IPC data structures to be modified and extended without breaking the user space ABI: Define _kernel wrapper data structures for the user-exposed data structures that current server as the internal data structures for the implementation: - struct msqid_kernel wraps struct msqid_ds. - struct semid_kernel wraps truct semid_ds. - struct shmid_kernel wraps struct shmid_ds. - Don't expose extern definition 'shmsegs' outside of sysv_shm.c. Submitted by: Dandekar Hrishikesh Obtained from: TrustedBSD Project Sponsored by: DARPA, SPAWAR, McAfee Research Revision Changes Path 1.17 +14 -0 src/sys/sys/msg.h 1.28 +7 -0 src/sys/sys/sem.h 1.20 +9 -1 src/sys/sys/shm.h