Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 1 Mar 2003 20:03:06 -0800 (PST)
From:      Juli Mallett <jmallett@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 26171 for review
Message-ID:  <200303020403.h224361r085755@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
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




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200303020403.h224361r085755>