Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 19 Feb 2013 13:40:36 +0000 (UTC)
From:      "Cherry G. Mathew" <cherry@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-projects@freebsd.org
Subject:   svn commit: r246991 - projects/amd64_xen_pv/sys/dev/xen/console
Message-ID:  <201302191340.r1JDeaTf019545@svn.freebsd.org>

index | next in thread | raw e-mail

Author: cherry
Date: Tue Feb 19 13:40:35 2013
New Revision: 246991
URL: http://svnweb.freebsd.org/changeset/base/246991

Log:
  'extern int db_active' is obsolete. Use kdb_active, instead.
  
  Approved by: gibbs (implicit)

Modified:
  projects/amd64_xen_pv/sys/dev/xen/console/console.c

Modified: projects/amd64_xen_pv/sys/dev/xen/console/console.c
==============================================================================
--- projects/amd64_xen_pv/sys/dev/xen/console/console.c	Tue Feb 19 13:32:26 2013	(r246990)
+++ projects/amd64_xen_pv/sys/dev/xen/console/console.c	Tue Feb 19 13:40:35 2013	(r246991)
@@ -179,13 +179,12 @@ xc_cnputc(struct consdev *dev, int c)
 		xc_cnputc_domu(dev, c);
 }
 
-extern int db_active;
 static boolean_t
 xcons_putc(int c)
 {
 	int force_flush = xc_mute ||
 #ifdef DDB
-		db_active ||
+		kdb_active ||
 #endif
 		panicstr;	/* we're not gonna recover, so force
 				 * flush 


help

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