svn commit: r316277 - stable/10/sys/sys

Ed Schouten ed at FreeBSD.org
Thu Mar 30 15:06:00 UTC 2017


Author: ed
Date: Thu Mar 30 15:05:58 2017
New Revision: 316277
URL: https://svnweb.freebsd.org/changeset/base/316277

Log:
  MFC r315732:
  
    Add forward declaration for struct vnode.
  
    The coredump() function provided by this header file has struct vnode *
    as an argument.

Modified:
  stable/10/sys/sys/imgact_elf.h
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/sys/sys/imgact_elf.h
==============================================================================
--- stable/10/sys/sys/imgact_elf.h	Thu Mar 30 15:05:49 2017	(r316276)
+++ stable/10/sys/sys/imgact_elf.h	Thu Mar 30 15:05:58 2017	(r316277)
@@ -38,6 +38,7 @@
 #define	AUXARGS_ENTRY(pos, id, val) {suword(pos++, id); suword(pos++, val);}
 
 struct thread;
+struct vnode;
 
 /*
  * Structure used to pass information from the loader to the


More information about the svn-src-all mailing list