0

where can I find source code for read() system call in linux kernel? In the manual pages I can find the syntax of the system call but not the path to that particular system call.

Dev G
  • 5
  • 3

2 Answers2

1

You can look in the Linux kernel source code on github or LXR

rma
  • 1,681
  • 1
  • 17
  • 41
0

Here is what you are looking for: http://lxr.linux.no/linux+v4.10.1/fs/read_write.c#L584

vtha
  • 547
  • 4
  • 7