From owner-freebsd-hackers Sun Jul 20 16:33:45 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id QAA07854 for hackers-outgoing; Sun, 20 Jul 1997 16:33:45 -0700 (PDT) Received: from phaeton.artisoft.com (phaeton.Artisoft.COM [198.17.250.50]) by hub.freebsd.org (8.8.5/8.8.5) with SMTP id QAA07849 for ; Sun, 20 Jul 1997 16:33:42 -0700 (PDT) Received: (from terry@localhost) by phaeton.artisoft.com (8.6.11/8.6.9) id QAA10047; Sun, 20 Jul 1997 16:31:26 -0700 From: Terry Lambert Message-Id: <199707202331.QAA10047@phaeton.artisoft.com> Subject: Re: sys/vfs.h To: frankd@yoda.fdt.net (Frank Seltzer) Date: Sun, 20 Jul 1997 16:31:26 -0700 (MST) Cc: hackers@FreeBSD.ORG In-Reply-To: from "Frank Seltzer" at Jul 18, 97 07:14:04 pm X-Mailer: ELM [version 2.4 PL24] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-hackers@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk > Do we have an equivalent file to this Linux file? I am trying to build > XVFilemanager and mount.c has > > #include > > which causes the build to fall over. It depends on what it wants out of it. Possibilities are: mount.h Contains mount related structures and manifest constants; this is your most likely candidate. Note: I am not happy with manifest definitions of file system types here; you will probably have to add "yet-another-one". This is because the BSD mount(2) system call needs a facelift. vnode_if.h The vnode interface; this file is generated as part of the build process by kern/vnode_if.sh. vnode.h Probably not what you want; details the in-core vnode structures. Terry Lambert terry@lambert.org --- Any opinions in this posting are my own and not those of my present or previous employers.