Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 12 Dec 2003 16:19:53 -0800 (PST)
From:      Robert Watson <rwatson@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 43872 for review
Message-ID:  <200312130019.hBD0Jrh9064609@repoman.freebsd.org>

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

Change 43872 by rwatson@rwatson_none on 2003/12/12 16:19:19

	Structures in socketvar.h  now depend on the defition of struct
	mtx.  Include _lock.h and _mutex.h so that files including
	socketvar.h but not the mutex APIs via mutex.h still ciompile. 
	This affected the GRE module.

Affected files ...

.. //depot/projects/netperf+sockets/sys/sys/socketvar.h#7 edit

Differences ...

==== //depot/projects/netperf+sockets/sys/sys/socketvar.h#7 (text+ko) ====

@@ -39,6 +39,8 @@
 
 #include <sys/queue.h>			/* for TAILQ macros */
 #include <sys/selinfo.h>		/* for struct selinfo */
+#include <sys/_lock.h>
+#include <sys/_mutex.h>
 
 /*
  * Kernel structure per socket.



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