I need to know where can I find the man pages for the system calls/routines related to device drivers:
register_chrdev()
alloc_chrdev_region()
...etc.I searched in the below links and found definitions:
What I need: There are no header file(s) details where the given call's prototypes present, return types, error conditions etc. and explanations as given in those of man pages in GNU/Linux!
It makes me think: Are they really system calls or something else specifically called!If they are system calls, why aren't there any man pages in Linux like we do as man open
,man close
,man socket
etc.