linux下的C語言開發(進程建立)

來源:互聯網
上載者:User

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

    在Linux下面,建立進程是一件十分有意思的事情。我們都知道,進程是作業系統下面享有資源的基本單位。那麼,在Linux下面應該怎麼建立進程呢?其實非常簡單,一個fork函數就可以搞定了。但是,我們需要清楚的是子進程與父進程之間除了代碼是共用的之外,堆棧資料和全域資料均是獨立的。

#include <unistd.h>#include <stdio.h>#include <stdlib.h>#include <math.h>#include <errno.h>#include <sys/types.h>#include <sys/wait.h>int main(){pid_t pid;if(-1 == (pid = fork())){printf("Error happened in fork function!\n");return 0;}if(0 == pid){printf("This is child process: %d\n", getpid());}else{printf("This is parent process: %d\n", getpid());}return 0;}   

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.