From 87226eaaf87f97c4395f5f53b48a55b729e23026 Mon Sep 17 00:00:00 2001 From: Habin Song <83588265+boulce@users.noreply.github.com> Date: Sun, 5 May 2024 17:27:49 +0900 Subject: [PATCH] typo: Update [OS] System Call (Fork Wait Exec).md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 코드 오타를 수정하였습니다. 세미콜론을 추가하였고, 변수 이름 오타를 수정하였습니다. --- .../Operating System/[OS] System Call (Fork Wait Exec).md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Computer Science/Operating System/[OS] System Call (Fork Wait Exec).md b/Computer Science/Operating System/[OS] System Call (Fork Wait Exec).md index c56fcdb3..995ae6a6 100644 --- a/Computer Science/Operating System/[OS] System Call (Fork Wait Exec).md +++ b/Computer Science/Operating System/[OS] System Call (Fork Wait Exec).md @@ -94,7 +94,7 @@ int main(int argc, char *argv[]) { printf("child (pid : %d)", (int) getpid()); } else { // (3) parent case - int wc = wait(NULL) // 추가된 부분 + int wc = wait(NULL); // 추가된 부분 printf("parent of %d (wc : %d / pid : %d)", wc, rc, (int)getpid()); } } @@ -136,11 +136,11 @@ int main(int argc, char *argv[]) { myargs[0] = strdup("wc"); // 내가 실행할 파일 이름 myargs[1] = strdup("p3.c"); // 실행할 파일에 넘겨줄 argument myargs[2] = NULL; // end of array - execvp(myarges[0], myargs); // wc 파일 실행. + execvp(myargs[0], myargs); // wc 파일 실행. printf("this shouldn't print out") // 실행되지 않음. } else { // (3) parent case - int wc = wait(NULL) // 추가된 부분 + int wc = wait(NULL); // 추가된 부분 printf("parent of %d (wc : %d / pid : %d)", wc, rc, (int)getpid()); } }