首頁 > 後端開發 > C++ > 主體

在C語言中,fork()和exec()的差異是什麼?

王林
發布: 2023-09-13 11:01:02
轉載
1445 人瀏覽過

在C語言中,fork()和exec()的差異是什麼?

在這裡,我們將看到在C語言中fork()和exec()系統呼叫的效果。 fork用於透過複製呼叫程序來建立一個新的進程。新進程是子進程。請參考以下屬性。

  • 子進程有自己獨特的進程ID。
  • 子進程的父進程ID與呼叫進程的進程ID相同。
  • 子程序不繼承父進程的記憶體鎖定和信號量。

fork()傳回子程序的PID。如果值非零,則為父進程的ID,如果值為0,則為子進程的ID。

exec()系統呼叫用於用新的進程映像取代目前進程映像。它將程式載入到當前空間,並從入口點運行。

因此,fork()和exec()之間的主要差異在於fork()啟動了一個與主行程相同的新行程副本。 exec()用新的進程映像取代目前進程映像,父進程和子進程同時執行。

範例

#include <stdio.h>
#include <sys/types.h>
#include <unistd.h>
#include <stdlib.h>
#include <errno.h>
#include <sys/wait.h>
int main() {
   pid_t process_id;
   int return_val = 1;
   int state;
   process_id = fork();
   if (process_id == -1) { //when process id is negative, there is an error, unable to fork
      printf("can&#39;t fork, error occured</p><p>");
         exit(EXIT_FAILURE);
   } else if (process_id == 0) { //the child process is created
      printf("The child process is (%u)</p><p>",getpid());
         char * argv_list[] = {"ls","-lart","/home",NULL};
      execv("ls",argv_list); // the execv() only return if error occured.
      exit(0);
   } else { //for the parent process
      printf("The parent process is (%u)</p><p>",getppid());
      if (waitpid(process_id, &state, 0) > 0) { //wait untill the process change its state
         if (WIFEXITED(state) && !WEXITSTATUS(state))
            printf("program is executed successfully</p><p>");
         else if (WIFEXITED(state) && WEXITSTATUS(state)) {
            if (WEXITSTATUS(state) == 127) {
               printf("Execution failed</p><p>");
            } else
               printf("program terminated with non-zero status</p><p>");
         } else
            printf("program didn&#39;t terminate normally</p><p>");
      }
      else {
         printf("waitpid() function failed</p><p>");
      }
      exit(0);
   }
   return 0;
}
登入後複製

輸出

The parent process is (8627)
The child process is (8756)
program is executed successfully
登入後複製

以上是在C語言中,fork()和exec()的差異是什麼?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:tutorialspoint.com
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
最新問題
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板