Where can I obtain a list of UNIX system calls?

后端 未结 8 1156
走了就别回头了
走了就别回头了 2020-12-31 15:37

Where are some lists of system calls on UNIX?

This wasn\'t my original question, but thanks anyway :)

8条回答
  •  北海茫月
    2020-12-31 16:01

    For the official, authoritative IEEE Std. 1003.1 / Single UNIX Specification (UNIX 2004) manpages, see:

    • Single UNIX Specification (Open Group Base Specification Issue 6) / IEEE Std. 1003.1 ("POSIX")

    A full list of functions (system interfaces) may be found under "System Interfaces" or at the link. I would also like to use this as an opportunity to plug my Development / Coding Search custom search engine, which includes and is heavily biased towards the Single UNIX Specification / IEEE Std. 1003.1. For example, a standard search for fopen, close, unix, etc. have promotions taken out to ensure that results from the authoritative documentation are at the very top. Adding "man" in front of a query heavily weights the result in favor of the IEEE Std. 1003.1 man page as in man find, man free, man inttypes.h, etc., although most queries should favor IEEE Std. 1003.1 even without adding "man" (if it isn't, type bad query and tell me).

提交回复
热议问题