Date: Fri, 29 Sep 2000 16:39:59 -0400 (EDT) From: Marc Tardif <intmktg@CAM.ORG> To: freebsd-hackers@freebsd.org Subject: finding source to functions Message-ID: <Pine.LNX.4.10.10009291637130.17580-100000@Gloria.CAM.ORG>
index | next in thread | raw e-mail
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
help
Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?Pine.LNX.4.10.10009291637130.17580-100000>
