From owner-cvs-all Thu Jun 20 2: 4:37 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0E30337B407; Thu, 20 Jun 2002 02:04:34 -0700 (PDT) Received: (from bde@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g5K94YU33193; Thu, 20 Jun 2002 02:04:34 -0700 (PDT) (envelope-from bde) Message-Id: <200206200904.g5K94YU33193@freefall.freebsd.org> From: Bruce Evans Date: Thu, 20 Jun 2002 02:04:33 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sys _sigset.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bde 2002/06/20 02:04:33 PDT Modified files: sys/sys _sigset.h Log: Quick fix for the type of the bitmap in sigset_t. It was an array of 4 u_ints but needs to be an array of 4 uint32_t's to work, at least if unsigned ints have less than 32 bits. It should be a non-array of 1 uint128_t on 128-bit machines, especially if u_int has 128 bits. The headers that declare uint32_t (actually __uint32_t) are intentionally not included here since this header should only be included by other headers. Fixed some style bugs (space instead of tab after #ifndef and #endif). Revision Changes Path 1.32 +3 -3 src/sys/sys/_sigset.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message