svn commit: r340423 - head/sys/kern

Gleb Smirnoff glebius at FreeBSD.org
Wed Nov 14 00:33:04 UTC 2018


Author: glebius
Date: Wed Nov 14 00:33:03 2018
New Revision: 340423
URL: https://svnweb.freebsd.org/changeset/base/340423

Log:
  Fix build on some architectures after r340413. On amd64 epoch.h
  appeared to be included implicitly.

Modified:
  head/sys/kern/kern_thread.c

Modified: head/sys/kern/kern_thread.c
==============================================================================
--- head/sys/kern/kern_thread.c	Wed Nov 14 00:21:52 2018	(r340422)
+++ head/sys/kern/kern_thread.c	Wed Nov 14 00:33:03 2018	(r340423)
@@ -40,6 +40,7 @@ __FBSDID("$FreeBSD$");
 #include <sys/lock.h>
 #include <sys/mutex.h>
 #include <sys/proc.h>
+#include <sys/epoch.h>
 #include <sys/rangelock.h>
 #include <sys/resourcevar.h>
 #include <sys/sdt.h>


More information about the svn-src-head mailing list