Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 13 Nov 2002 14:08:37 -0800 (PST)
From:      John Baldwin <jhb@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 21045 for review
Message-ID:  <200211132208.gADM8ben072819@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=21045

Change 21045 by jhb@jhb_laptop on 2002/11/13 14:08:13

	Compile fixes.

Affected files ...

.. //depot/projects/smpng/sys/kern/subr_witness.c#65 edit

Differences ...

==== //depot/projects/smpng/sys/kern/subr_witness.c#65 (text+ko) ====

@@ -72,6 +72,8 @@
 
 #include <ddb/ddb.h>
 
+#include <machine/stdarg.h>
+
 /* Define this to check for blessed mutexes */
 #undef BLESSING
 
@@ -146,7 +148,7 @@
 static struct	lock_instance *find_instance(struct lock_list_entry *lock_list,
 					     struct lock_object *lock);
 static int	witness_list(struct thread *td);
-static int	witness_list_lock(struct lock_instance *instance);
+static void	witness_list_lock(struct lock_instance *instance);
 #if defined(DDB)
 static void	witness_display_list(void(*prnt)(const char *fmt, ...),
 				     struct witness_list *list);
@@ -1366,7 +1368,7 @@
 	return (NULL);
 }
 
-static int
+static void
 witness_list_lock(struct lock_instance *instance)
 {
 	struct lock_object *lock;

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe p4-projects" in the body of the message




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