Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 30 Mar 2017 15:05:59 +0000 (UTC)
From:      Ed Schouten <ed@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org
Subject:   svn commit: r316277 - stable/10/sys/sys
Message-ID:  <201703301505.v2UF5xnQ022778@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



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