System Call Process 생성과 제어를 위한 System call fork(), exec(), wait() fork(), exec() : 새로운 Process 생성과 관련 있다. wait() : 프로세스 Parent 가 자신이 만든 프로세스인 child의 종료를 기다리는 명령어다. Fork 새로운 Process를 생성할 때 사용한다. code #include #include #include int main(int argc, char *argv[]) { printf("pid : %d", (int) getpid()); // pid : 29146 int rc = fork(); // 새로운 프로세스 생성 if (rc < 0) { // (1) fork 실패 exit(1); } else if (rc ==..