Date: Fri, 9 Jun 2017 15:47:14 +0000 (UTC) From: Andrew Turner <andrew@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r319753 - head/sys/arm64/include Message-ID: <201706091547.v59FlEYq049971@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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);
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201706091547.v59FlEYq049971>