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
  • 5

2 Answers2

1

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

rma
  • 1,853
  • 1
  • 22
  • 42
0

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

vtha
  • 577
  • 4
  • 7