From owner-p4-projects@FreeBSD.ORG Thu Jul 8 18:59:28 2004 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 3E30316A4D0; Thu, 8 Jul 2004 18:59:28 +0000 (GMT) Delivered-To: perforce@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0414716A4CE for ; Thu, 8 Jul 2004 18:59:28 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F10F743D4C for ; Thu, 8 Jul 2004 18:59:27 +0000 (GMT) (envelope-from bb+lists.freebsd.perforce@cyrus.watson.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i68IxR0U024035 for ; Thu, 8 Jul 2004 18:59:27 GMT (envelope-from bb+lists.freebsd.perforce@cyrus.watson.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i68IxRx7024032 for perforce@freebsd.org; Thu, 8 Jul 2004 18:59:27 GMT (envelope-from bb+lists.freebsd.perforce@cyrus.watson.org) Date: Thu, 8 Jul 2004 18:59:27 GMT Message-Id: <200407081859.i68IxRx7024032@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to bb+lists.freebsd.perforce@cyrus.watson.org using -f From: Robert Watson To: Perforce Change Reviews Subject: PERFORCE change 56800 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Jul 2004 18:59:28 -0000 http://perforce.freebsd.org/chv.cgi?CH=56800 Change 56800 by rwatson@rwatson_tislabs on 2004/07/08 18:59:06 A little style cleanup. Affected files ... .. //depot/projects/trustedbsd/mac/sys/sys/msg.h#10 edit Differences ... ==== //depot/projects/trustedbsd/mac/sys/sys/msg.h#10 (text+ko) ==== @@ -130,12 +130,19 @@ }; extern struct msginfo msginfo; -/* Kernel wrapper for the user-level structure */ -struct msqid_kernel -{ - struct msqid_ds u; - /* the following are private */ - struct label *label; /* MAC label */ +/* + * Kernel wrapper for the user-level structure. + */ +struct msqid_kernel { + /* + * Data structure exposed to user space. + */ + struct msqid_ds u; + + /* + * Kernel-private components of the message queue. + */ + struct label *label; /* MAC label */ }; #else /* !_KERNEL */