From owner-cvs-all Fri Nov 10 15: 0:59 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 442A737B479; Fri, 10 Nov 2000 15:00:56 -0800 (PST) Received: (from gallatin@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA22453; Fri, 10 Nov 2000 15:00:56 -0800 (PST) (envelope-from gallatin@FreeBSD.org) Message-Id: <200011102300.PAA22453@freefall.freebsd.org> From: Andrew Gallatin Date: Fri, 10 Nov 2000 15:00:56 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/alpha/osf1 osf1_signal.c osf1_signal.h osf1_sysvec.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG gallatin 2000/11/10 15:00:55 PST Modified files: sys/alpha/osf1 osf1_signal.c osf1_signal.h osf1_sysvec.c Log: Simplify and correct OSF/1 signal handling. - No signal translation is needed. Our signals match the OSF/1 signals - an OSF/1 sigset_t is 64 bits. Make certain to use all 64-bits of it. We'd previously only used the lower 32 bits. This was mostly harmless as I don't know of an OSF/1 apps which use any signals > 31. However, the alpha Linux ABI uses the osf/1 signal routines and threaded linux apps tyically use signals 32 and 33 to comminicate with the manager thread, so it is important we preserve the upper 32-bits. Reviewed by: marcel (at least in principal) Revision Changes Path 1.3 +14 -93 src/sys/alpha/osf1/osf1_signal.c 1.2 +2 -40 src/sys/alpha/osf1/osf1_signal.h 1.4 +3 -3 src/sys/alpha/osf1/osf1_sysvec.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message