svn commit: r185561 - head/sys/amd64/amd64

Ganbold Tsagaankhuu ganbold at FreeBSD.org
Tue Dec 2 06:19:54 PST 2008


Author: ganbold (doc committer)
Date: Tue Dec  2 14:19:53 2008
New Revision: 185561
URL: http://svn.freebsd.org/changeset/base/185561

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

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

Modified: head/sys/amd64/amd64/intr_machdep.c
==============================================================================
--- head/sys/amd64/amd64/intr_machdep.c	Tue Dec  2 13:36:38 2008	(r185560)
+++ head/sys/amd64/amd64/intr_machdep.c	Tue Dec  2 14:19:53 2008	(r185561)
@@ -239,11 +239,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-all mailing list