June 3, 2013
1:11 p.m.
On 2013-06-03 14:12:16 (+0530), Varun Sharma <vsdssd@gmail.com> wrote:
Hi, I am tracing send and recv system call .From user space to kernel space switching send in kernel space not going into sys_send .It directly going into sys_sendto .
Apparently glibc implements send() using the sendto() syscall. The problem isn't really with the traces you added to the kernel, but that you forgot there's another layer between your application and the kernel. Regards. Kristof