svn commit: r240338 - stable/8/sys/kern

Andriy Gapon avg at FreeBSD.org
Tue Sep 11 05:59:19 UTC 2012


Author: avg
Date: Tue Sep 11 05:59:19 2012
New Revision: 240338
URL: http://svn.freebsd.org/changeset/base/240338

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

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

Modified: stable/8/sys/kern/kern_shutdown.c
==============================================================================
--- stable/8/sys/kern/kern_shutdown.c	Tue Sep 11 05:58:32 2012	(r240337)
+++ stable/8/sys/kern/kern_shutdown.c	Tue Sep 11 05:59:19 2012	(r240338)
@@ -146,7 +146,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 boot(int) __dead2;
 static void poweroff_wait(void *, int);


More information about the svn-src-all mailing list