atom feed9 messages in org.freebsd.freebsd-hackersRe: finding source to functions
FromSent OnAttachments
Marc TardifSep 29, 2000 1:39 pm 
Thierry HerbelotSep 29, 2000 2:01 pm 
Bush DoctorSep 29, 2000 2:37 pm 
Alfred PerlsteinSep 29, 2000 3:18 pm 
Arindum MukerjiSep 30, 2000 12:37 pm 
Nat LanzaSep 30, 2000 6:39 pm 
bush doctorSep 30, 2000 8:25 pm 
Dag-Erling SmorgravOct 2, 2000 5:14 am 
Dag-Erling SmorgravOct 2, 2000 5:18 am 
Subject:Re: finding source to functions
From:Bush Doctor (derv@goku.cl.msu.edu)
Date:Sep 29, 2000 2:37:22 pm
List:org.freebsd.freebsd-hackers

Out of da blue Marc Tardif aka (intm@CAM.ORG) said:

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?

There's also cscope and cbrowser in the ports under /usr/ports/devel ...

To Unsubscribe: send mail to majo@FreeBSD.org with "unsubscribe freebsd-hackers" in the body of the message