시스템 호출 설명에서 "정수 인수"는 무엇을 의미합니까? [복사]

시스템 호출 설명에서 "정수 인수"는 무엇을 의미합니까? [복사]

중복 가능성:
매뉴얼 페이지의 숫자는 무엇을 의미합니까?

맨페이지에 설명된 모든 시스템 호출에는 연관된 번호(예: )가 있습니다 exec(3). 이 숫자는 무엇을 의미하나요?

답변1

숫자는 남자 부분입니다. 도서관 통화는 3번입니다. man(1)의 전체 목록은 다음과 같습니다.

   1   Executable programs or shell commands
   2   System calls (functions provided by the kernel)
   3   Library calls (functions within program libraries)
   4   Special files (usually found in /dev)
   5   File formats and conventions eg /etc/passwd
   6   Games
   7   Miscellaneous  (including  macro  packages and conven‐
       tions), e.g. man(7), groff(7)
   8   System administration commands (usually only for root)
   9   Kernel routines [Non standard]

일부 항목은 다른 섹션에서 동일한 이름을 갖습니다. 예를 들어, man(1)은 man 바이너리용이고, man(7)은 맨페이지 형식을 구현하기 위해 매크로를 작성하는 방법을 설명합니다. 특정 섹션에 액세스하려면 항목 앞에 숫자 인수를 넣을 수 있습니다.

man 7 man

관련 정보