linux下的C語言開發(進程等待)

來源:互聯網
上載者:User

【 聲明:著作權,歡迎轉載,請勿用於商業用途。  聯絡信箱:feixiaoxing @163.com】

    所謂進程等待,其實很簡單。前面我們說過可以用fork建立子進程,那麼這裡我們就可以使用wait函數讓父進程等待子進程運行結束後才開始運行。注意,為了證明父進程確實是等待子進程運行結束後才繼續啟動並執行,我們使用了sleep函數。但是,在linux下面,sleep函數的參數是秒,而windows下面sleep的函數參數是毫秒。

#include <stdio.h>#include <stdlib.h>#include <unistd.h>int main(int argc, char* argv[]){    pid_t pid;    pid = fork();    if(0 == pid)    {        printf("This is child process, %d\n", getpid());        sleep(5);    }    else    {        wait(NULL);        printf("This is parent process, %d\n", getpid());    }    return 1;}

    下面,我們需要做的就是兩步,首先輸入gcc fork.c -o fork, 然後輸入./fork,就會在console下面獲得這樣的結果。

[root@localhost fork]# ./forkThis is child process, 2135This is parent process, 2134

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.