svn commit: r319753 - head/sys/arm64/include

Andrew Turner andrew at FreeBSD.org
Fri Jun 9 15:47:15 UTC 2017


Author: andrew
Date: Fri Jun  9 15:47:14 2017
New Revision: 319753
URL: https://svnweb.freebsd.org/changeset/base/319753

Log:
  Allow the arm64 machine/vfp.h to be included without first including
  machine/pcb.h. It he latter is only needed for struct pcb.

Modified:
  head/sys/arm64/include/vfp.h

Modified: head/sys/arm64/include/vfp.h
==============================================================================
--- head/sys/arm64/include/vfp.h	Fri Jun  9 15:37:17 2017	(r319752)
+++ head/sys/arm64/include/vfp.h	Fri Jun  9 15:47:14 2017	(r319753)
@@ -41,6 +41,8 @@ struct vfpstate {
 };
 
 #ifdef _KERNEL
+struct pcb;
+
 void	vfp_init(void);
 void	vfp_discard(struct thread *);
 void	vfp_restore_state(void);


More information about the svn-src-head mailing list