From owner-cvs-all Fri Oct 8 17:25:32 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 49B1B14DE5; Fri, 8 Oct 1999 17:25:31 -0700 (PDT) (envelope-from jdp@FreeBSD.org) Received: (from jdp@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA41422; Fri, 8 Oct 1999 17:25:31 -0700 (PDT) (envelope-from jdp@FreeBSD.org) Message-Id: <199910090025.RAA41422@freefall.freebsd.org> From: John Polstra Date: Fri, 8 Oct 1999 17:25:31 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/compat-43 sigcompat.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jdp 1999/10/08 17:25:30 PDT Modified files: lib/libc/compat-43 sigcompat.c Log: Fix sigvec(). When the sigset_t changes came in, it was altered to call osigaction(). But that's wrong because it causes the handler to receive a struct osigcontext instead of the expected struct sigcontext. Use sigaction() instead, copying the compatible portion of the signal mask. Reviewed by: marcel Revision Changes Path 1.5 +18 -7 src/lib/libc/compat-43/sigcompat.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message