首頁  >  文章  >  後端開發  >  使用C中的fork()函數建立多個進程

使用C中的fork()函數建立多個進程

WBOY
WBOY轉載
2023-09-08 18:17:031814瀏覽

使用C中的fork()函數建立多個進程

在這個部分中,我們將看到如何使用fork()在C語言中建立子程序。我們也會在每個進程中執行一些不同的任務。所以在我們的父進程中,我們將列印不同的值。

當呼叫fork()時,它會傳回一個值。如果這個值大於0,那麼目前就在父進程中,否則就在子進程中。所以我們可以透過這個來區分進程。

範例程式碼

#include <stdio.h>
#include <unistd.h>
int main() {
   int n = fork(); //subdivide process
   if (n > 0) { //when n is not 0, then it is parent process
      printf("Parent process </p><p>";
   } else { //when n is 0, then it is child process
      printf("Child process </p><p>");
   }
   return 0;
}

輸出

soumyadeep@soumyadeep-VirtualBox:~$ ./a.out
Parent process
soumyadeep@soumyadeep-VirtualBox:~$ Child process
soumyadeep@soumyadeep-VirtualBox:~$

以上是使用C中的fork()函數建立多個進程的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除