Re: How to find system call in kernel source code?

2005-11-26 Thread Giorgos Keramidas
On 2005-11-25 21:09, David Kelly [EMAIL PROTECTED] wrote: The sendfile(2) function is apparently a kernel system call. I've find /usr/src -type f -exec grep -il sendfile {} \; and several variations yet not found where the code which performs sendfile() is located. Is system call 393. Guessing

How to find system call in kernel source code?

2005-11-25 Thread David Kelly
The sendfile(2) function is apparently a kernel system call. I've find /usr/src -type f -exec grep -il sendfile {} \; and several variations yet not found where the code which performs sendfile() is located. Is system call 393. Guessing I'm just missing the dispatch table. This is also