From owner-cvs-all Mon Sep 10 0: 0:22 2001 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 655DE37B405; Mon, 10 Sep 2001 00:00:17 -0700 (PDT) Received: (from marcel@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f8A70H027193; Mon, 10 Sep 2001 00:00:17 -0700 (PDT) (envelope-from marcel) Message-Id: <200109100700.f8A70H027193@freefall.freebsd.org> From: Marcel Moolenaar Date: Mon, 10 Sep 2001 00:00:17 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/linux linux_sysvec.c 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 marcel 2001/09/10 00:00:17 PDT Modified files: sys/i386/linux linux_sysvec.c Log: Fix LINT breakage caused by previous commit. The linux_rt_sendsig and linux_sendsig functions guarded their debugging output with ldebug(sigreturn). This has been mistaken for a cut-n-paste bug, and was replaced by ldebug(rt_sendsig) and ldebug(sendsig) resp. Since the sendsig functions are not syscalls, this brokei any build that defines DEBUG. The fix maps both functions to the unused syscall 0 so that they can be enabled/disabled independently from sigreturn, but not independently from each other. Revision Changes Path 1.87 +10 -1 src/sys/i386/linux/linux_sysvec.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message