Module Name:    src
Committed By:   dyoung
Date:           Mon May 18 20:22:16 UTC 2009

Modified Files:
        src/sys/arch/sparc64/sparc64: machdep.c

Log Message:
Make waittime static so that I know nothing else is using it.


To generate a diff of this commit:
cvs rdiff -u -r1.238 -r1.239 src/sys/arch/sparc64/sparc64/machdep.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/arch/sparc64/sparc64/machdep.c
diff -u src/sys/arch/sparc64/sparc64/machdep.c:1.238 src/sys/arch/sparc64/sparc64/machdep.c:1.239
--- src/sys/arch/sparc64/sparc64/machdep.c:1.238	Mon May 18 20:20:42 2009
+++ src/sys/arch/sparc64/sparc64/machdep.c	Mon May 18 20:22:16 2009
@@ -1,4 +1,4 @@
-/*	$NetBSD: machdep.c,v 1.238 2009/05/18 20:20:42 dyoung Exp $ */
+/*	$NetBSD: machdep.c,v 1.239 2009/05/18 20:22:16 dyoung Exp $ */
 
 /*-
  * Copyright (c) 1996, 1997, 1998 The NetBSD Foundation, Inc.
@@ -71,7 +71,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.238 2009/05/18 20:20:42 dyoung Exp $");
+__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.239 2009/05/18 20:22:16 dyoung Exp $");
 
 #include "opt_ddb.h"
 #include "opt_multiprocessor.h"
@@ -557,7 +557,7 @@
 	tf->tf_out[7] = -1;		/* "you lose" if upcall returns */
 }
 
-int	waittime = -1;
+static int	waittime = -1;
 struct pcb dumppcb;
 
 void

Reply via email to