From owner-cvs-all Sun Sep 17 8:12: 9 2000 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 D4AB237B422; Sun, 17 Sep 2000 08:12:05 -0700 (PDT) Received: (from bde@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA94149; Sun, 17 Sep 2000 08:12:05 -0700 (PDT) (envelope-from bde@FreeBSD.org) Message-Id: <200009171512.IAA94149@freefall.freebsd.org> From: Bruce Evans Date: Sun, 17 Sep 2000 08:12:05 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern kern_sig.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG bde 2000/09/17 08:12:05 PDT Modified files: sys/kern kern_sig.c Log: Unpessimized CURSIG(). The fast path through CURSIG() was broken in the 128-bit sigset_t changes by moving conditionally (rarely) executed code to the beginning where it is always executed, and since this code now involves 3 128-bit operations, the pessimization was relatively large. This change speeds up lmbench's pipe latency benchmark by 3.5%. Fixed style bugs in CURSIG(). Revision Changes Path 1.88 +7 -7 src/sys/kern/kern_sig.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message