From owner-p4-projects Sat Mar 1 20: 3:10 2003 Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 2D8C137B405; Sat, 1 Mar 2003 20:03:08 -0800 (PST) Delivered-To: perforce@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B945537B401 for ; Sat, 1 Mar 2003 20:03:07 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5185F43FA3 for ; Sat, 1 Mar 2003 20:03:07 -0800 (PST) (envelope-from jmallett@freebsd.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h224370U085758 for ; Sat, 1 Mar 2003 20:03:07 -0800 (PST) (envelope-from jmallett@freebsd.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h224361r085755 for perforce@freebsd.org; Sat, 1 Mar 2003 20:03:06 -0800 (PST) Date: Sat, 1 Mar 2003 20:03:06 -0800 (PST) Message-Id: <200303020403.h224361r085755@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to jmallett@freebsd.org using -f From: Juli Mallett Subject: PERFORCE change 26171 for review To: Perforce Change Reviews Sender: owner-p4-projects@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG http://perforce.freebsd.org/chv.cgi?CH=26171 Change 26171 by jmallett@jmallett_dalek on 2003/03/01 20:03:04 Mark local variables unused. Affected files ... .. //depot/projects/mips/sys/mips/include/critical.h#3 edit Differences ... ==== //depot/projects/mips/sys/mips/include/critical.h#3 (text+ko) ==== @@ -38,7 +38,7 @@ static __inline void cpu_critical_enter(void) { - struct thread *td = curthread; + struct thread *td __unused = curthread; } /* @@ -51,7 +51,7 @@ static __inline void cpu_critical_exit(void) { - struct thread *td = curthread; + struct thread *td __unused = curthread; } To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe p4-projects" in the body of the message