From owner-freebsd-hackers Sun Oct 10 21:14:57 1999 Delivered-To: freebsd-hackers@freebsd.org Received: from fw.wintelcom.net (ns1.wintelcom.net [209.1.153.20]) by hub.freebsd.org (Postfix) with ESMTP id 891AA14E74 for ; Sun, 10 Oct 1999 21:14:55 -0700 (PDT) (envelope-from bright@wintelcom.net) Received: from localhost (bright@localhost) by fw.wintelcom.net (8.9.3/8.9.3) with ESMTP id VAA25590; Sun, 10 Oct 1999 21:34:27 -0700 (PDT) Date: Sun, 10 Oct 1999 21:34:27 -0700 (PDT) From: Alfred Perlstein To: Gustavo V G C Rios Cc: hackers@FreeBSD.ORG Subject: Re: file system system calls In-Reply-To: <380145BD.A4C04C01@ddsecurity.com.br> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-hackers@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Mon, 11 Oct 1999, Gustavo V G C Rios wrote: > May anyone here point me where in the source tree i can see file system > API implemented, like open, write, close, etc..... src/sys/kern/vfs_syscalls.c because freebsd follows (for the most part) style(9) you can usually find where a function is implemented by just going to the sys source directory and doing a simple: grep ^somefuncname */* this is because the concention is to write functions like so: int somefunctioname(foo) { -Alfred To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hackers" in the body of the message