From owner-freebsd-hackers Fri Sep 29 13:37:43 2000 Delivered-To: freebsd-hackers@freebsd.org Received: from Gloria.CAM.ORG (Gloria.CAM.ORG [205.151.116.34]) by hub.freebsd.org (Postfix) with ESMTP id F2B6137B502 for ; Fri, 29 Sep 2000 13:37:39 -0700 (PDT) Received: from localhost (intmktg@localhost) by Gloria.CAM.ORG (8.9.3/8.9.3) with ESMTP id QAA17775 for ; Fri, 29 Sep 2000 16:39:59 -0400 Date: Fri, 29 Sep 2000 16:39:59 -0400 (EDT) From: Marc Tardif To: freebsd-hackers@freebsd.org Subject: finding source to functions 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 How can I find the source to specific functions in /usr/src/sys? I tried running ctags (find /usr/src/sys/ -type f -print | xargs ctags -w), but it dumps core because it can't accept so many args. I then tried creating a tags file for each subdirectory like so: for i in /usr/src/sys/ do if test -d $i then cd $i find ./ -type f -print | xargs ctags -w cd .. fi done But that didn't work either. Any suggestions to make browsing the source code easier? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hackers" in the body of the message