Re: How to locate implementation of a specific function in glibc source code?
- From: Eric <NoOne@xxxxxxxxxxx>
- Date: Sat, 25 Nov 2006 19:35:27 -0800
loic-dev@xxxxxxx wrote:
Hi Ronald,or
I tried to locate execv using:
(in the glib source dir)
grep "int execv" * -r
grep "int __execv" * -r
but failed.
Try at the top directory of the glibc source:
find . -name "*.c" | xargs fgrep -l "execv"
HTH,
Loic.
find . -name "*.c" -exec fgrep -l execv {} \; -print
Eric
.
- References:
- Prev by Date: Re: Blocking read() from a USB->Serial adapter.
- Next by Date: Re: Blocking read() from a USB->Serial adapter.
- Previous by thread: Re: How to locate implementation of a specific function in glibc source code?
- Next by thread: Re: How to locate implementation of a specific function in glibc source code?
- Index(es):