- bookworm-backports 4.24.0-2~bpo12+1
- testing 4.24.0-2
- unstable 4.24.0-2
setup(2) | System Calls Manual | setup(2) |
이름¶
setup - 디바이스과 파일 시스템을 설정하고, 루트 파일 시스템을 마운트한다
라이브러리¶
표준 C 라이브러리 (libc, -lc)
요약¶
#include <unistd.h>
int setup(void);
설명¶
setup()은 linux/init/main.c에서 한 번 호출된다. 이 함수는 커널에서 설정된 디바이스와 파일 시스템에 대한 초기화 함수를 부르고 루트 파일 시스템을 마운트한다.
어떤 사용자 프로세스도 setup()을 호출할 수 없다. 슈퍼 유저의 권한을 가지고 있는 프로세스라도 사용자 프로세스이면 EPERM 에러가 발생한다.
반환값¶
setup()는 항상 사용자 프로세스에게 -1을 리턴한다.
에러¶
- EPERM
- 사용자 프로세스일 경우 항상.
버전S¶
Since Linux 2.1.121, no such function exists anymore.
표준¶
This function is Linux-specific, and should not be used in programs intended to be portable, or indeed in any programs at all.
주의¶
The calling sequence varied: at some times setup() has had a single argument void *BIOS and at other times a single argument int magic.
번역¶
이 매뉴얼 페이지의 한국어 번역은 다음에 의해 편집되었습니다: 정강훈 <skyeyes@soback.kornet.net>
이 번역은 무료 문서입니다. 저작권 조건에 대해서는 GNU General Public License 버전 3 이상을 읽으십시오. 책임이 없습니다.
이 매뉴얼 페이지의 번역에서 오류를 발견하면 translation-team-ko@googlegroups.com 로 이메일을 보내주십시오.
2022년 10월 30일 | Linux man-pages 6.03 |