Date: Wed, 30 Apr 1997 08:17:57 +0200 From: j@uriah.heep.sax.de (J Wunsch) To: hackers@FreeBSD.ORG Cc: rishim@trillium.com Subject: Re: kmem_alloc Message-ID: <19970430081757.LI20992@uriah.heep.sax.de> In-Reply-To: <9704300015.AA01697@trillium.com>; from rishim@trillium.com on Apr 29, 1997 17:15:04 -0700 References: <9704300015.AA01697@trillium.com>
next in thread | previous in thread | raw e-mail | index | archive | help
As rishim@trillium.com wrote: > I want to look at the kmem_alloc() implementation of the FreeBsd. > In which file the function is implemented? grep(1) is your friend (maybe even global(1) now, but my tree ain't tagged already). FreeBSD's style guide requires function names being the first on a line, so the regexp for this is simple. j@uriah 61% grep ^kmem_alloc /sys/*/* /sys/vm/vm_kern.c:kmem_alloc_pageable(map, size) /sys/vm/vm_kern.c:kmem_alloc(map, size) /sys/vm/vm_kern.c:kmem_alloc_wait(map, size) -- cheers, J"org joerg_wunsch@uriah.heep.sax.de -- http://www.sax.de/~joerg/ -- NIC: JW11-RIPE Never trust an operating system you don't have sources for. ;-)
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?19970430081757.LI20992>