c - where to find select() source code in glibc source? -
i trying find select() source code (linux, i386 arch) in glibc source code, cannot find (related said architecture)
could point me select() source code ?
select() not function of libc, kernel function, need take kernel source.
you can tell looking man page: if in section 2, it's kernel function, if it's in section 3, it's function of standard c library, in case glibc.
edit: other people remarked correctly (thank you!), function described in section 2 officially called system call , call library wraps operating system's actual call interface.
Comments
Post a Comment