Computer Science/Operating System
2021. 7. 1.
[Operating System] 5. System Call
0. System Call fork(), exec(), wait()은 Process 생성과 제어를 위한 System Call이다. fork, exec는 새로운 Process 생성과 관련이 있다. wait은 Process(Parent)가 만든 다른 Process(Child)가 끝날 때까지 기다리는 명령이다. 1. Fork Fork는 새로운 Process를 생성할 때 사용한다. #include #include #include int main(int argc, char *argv[]) { printf("pid : %d", (int) getpid()); // pid : 29146 int rc = fork();// 주목 if (rc < 0) { exit(1); }// (1) fork 실패 else if (rc =..