svn commit: r240337 - stable/9/sys/kern

Andriy Gapon avg at FreeBSD.org
Tue Sep 11 05:58:33 UTC 2012


Author: avg
Date: Tue Sep 11 05:58:32 2012
New Revision: 240337
URL: http://svn.freebsd.org/changeset/base/240337

Log:
  MFC r235777: Make dumptid non-static. It is used by libkvm.
  
  PR:		kern/167671
  MFC slacker:	harti

Modified:
  stable/9/sys/kern/kern_shutdown.c
Directory Properties:
  stable/9/sys/   (props changed)

Modified: stable/9/sys/kern/kern_shutdown.c
==============================================================================
--- stable/9/sys/kern/kern_shutdown.c	Tue Sep 11 05:04:59 2012	(r240336)
+++ stable/9/sys/kern/kern_shutdown.c	Tue Sep 11 05:58:32 2012	(r240337)
@@ -148,7 +148,7 @@ static struct dumperinfo dumper;	/* our 
 
 /* Context information for dump-debuggers. */
 static struct pcb dumppcb;		/* Registers. */
-static lwpid_t dumptid;			/* Thread ID. */
+lwpid_t dumptid;			/* Thread ID. */
 
 static void poweroff_wait(void *, int);
 static void shutdown_halt(void *junk, int howto);


More information about the svn-src-all mailing list