svn commit: r185306 - head/sys/i386/i386

Ganbold Tsagaankhuu ganbold at FreeBSD.org
Tue Nov 25 10:48:14 PST 2008


Author: ganbold (doc committer)
Date: Tue Nov 25 18:48:13 2008
New Revision: 185306
URL: http://svn.freebsd.org/changeset/base/185306

Log:
  Remove unused variable.
  
  Found with:     Coverity Prevent(tm)
  CID: 3685
  
  Approved by: scottl

Modified:
  head/sys/i386/i386/intr_machdep.c

Modified: head/sys/i386/i386/intr_machdep.c
==============================================================================
--- head/sys/i386/i386/intr_machdep.c	Tue Nov 25 18:40:40 2008	(r185305)
+++ head/sys/i386/i386/intr_machdep.c	Tue Nov 25 18:48:13 2008	(r185306)
@@ -230,11 +230,8 @@ void
 intr_execute_handlers(struct intsrc *isrc, struct trapframe *frame)
 {
 	struct intr_event *ie;
-	struct thread *td;
 	int vector;
 
-	td = curthread;
-
 	/*
 	 * We count software interrupts when we process them.  The
 	 * code here follows previous practice, but there's an


More information about the svn-src-head mailing list