FORK()函數的理解
對于剛剛接觸Unix/Linux操作系統,在Linux下編寫多進程的人來說,fork是最難理解的概念之一:它執行一次卻返回兩個值。
本文引用地址:http://www.eepw.com.cn/article/148649.htm首先我們來看下fork函數的原型:
#i nclude
#i nclude
pid_t fork(void);
返回值:
負數:如果出錯,則fork()返回-1,此時沒有創建新的進程。最初的進程仍然運行。
零:在子進程中,fork()返回0
正數:在負進程中,fork()返回正的子進程的PID
其次我們來看下如何利用fork創建子進程。
創建子進程的樣板代碼如下所示:
pid_t child;
if((child = fork())0)
/*錯誤處理*/
else if(child == 0)
/*這是新進程*/
else
/*這是最初的父進程*/
fock函數調用一次卻返回兩次;向父進程返回子進程的ID,向子進程中返回0,
這是因為父進程可能存在很多過子進程,所以必須通過這個返回的子進程ID來跟蹤子進程,
而子進程只有一個父進程,他的ID可以通過getppid取得。
下面我們來對比一下兩個例子:
第一個:
#include
#include
int main()
{
pid_t pid;
int count=0;
pid = fork();
printf( This is first time, pid = %dn, pid );
printf( This is secONd time, pid = %dn, pid );
count++;
printf( count = %dn, count );
if ( pid>0 )
{
printf( This is the parent process,the child has the pid:%dn, pid );
}
else if ( !pid )
{
printf( This is the child Process.n)
}
else
{
printf( fork failed.n );
}
printf( This is third time, pid = %dn, pid );
printf( This is fouth time, pid = %dn, pid );
return 0;
}
運行結果如下:
問題:
這個結果很奇怪了,為什么printf的語句執行兩次,而那句“count++;”的語句卻只執行了一次
接著看:
#include
#include
int main(void)
{
pid_t pid;
int count=0;
pid = fork();
printf( Now, the pid returned by calling fork() is %dn, pid );
if ( pid>0 )
{
printf( This is the parent procESS,the child has the pid:%dn, pid );
printf( In the parent process,count = %dn, count );
}
else if ( !pid )
{
printf( This is the child process.n);
printf( Do your own things here.n );
count ++;
printf( In the child process, count = %dn, count );
}
else
{
printf( fork failed.n );
}
return 0;
}
運行結果如下:
現在來解釋上面提出的問題。
看這個程序的時候,頭腦中必須首先了解一個概念:在語句pid=fork()之前,只有一個進程在執行這段代碼,但在這條語句之后,就變成兩個進程在執行了,這兩個進程的代碼部分完全相同,將要執行的下一條語句都是if ( pid>0 )……。
兩個進程中,原先就存在的那個被稱作“父進程”,新出現的那個被稱作“子進程”。父子進程的區別除了進程標志符(process ID)不同外,變量pid的值也不相同,pid存放的是fork的返回值。fork調用的一個奇妙之處就是它僅僅被調用一次,卻能夠返回兩次,它可能有三種不同的返回值:
1. 在父進程中,fork返回新創建子進程的進程ID;
2.在子進程中,fork返回0;
3.如果出現錯誤,fork返回一個負值;
fork出錯可能有兩種原因:(1)當前的進程數已經達到了系統規定的上限,這時errno的值被設置為EAGAIN。(2)系統內存不足,這時errno的值被設置為ENOMEM。
接下來我們來看看APUE2中對fork的說明:
The new process created by fork is called the child process. This function is called once but returns twice. The only difference in the returns is that the return value in the child is 0, whereas the return value in the parent is the process ID of the new child. The reason the child"s process ID is returned to the parent is that a process can have more than one child, and there is no function that allows a process to o^ain the process IDs of its children. The reason fork returns 0 to the child is that a process can have only a single parent, and the child can always call getppid to o^ain the process ID of its parent. (Process ID 0 is reserved for use by the kernel, so it"s not possible for 0 to be the process ID of a child.)
被fork創建的新進程叫做自進程。fork函數被調用一次,卻兩次返回。返回值唯一的區別是在子進程中返回0,而在父進程中返回子進程的pid。在父進程中要返回子進程的pid的原因是父進程可能有不止一個子進程,而一個進程又沒有任何函數可以得到他的子進程的pid。
Both the child and the parent continue executing with the instruction that follows the call to fork. The child is a copy of the parent. For example, the child gets a copy of the parent"s data space, heap, and stack. Note that this is a copy for the child; the parent and the child do not share these portions of memory. The parent and the child share the text segment (Section 7.6).
您可能也感興趣:
為您推薦
8家險企股權被掛牌轉讓,為何險企股權不再被追捧?
深圳最低工資標準調整為2360元/月 失業保險金為2124元/月
遼寧實施失業保險省級統籌 對缺口核定等作出詳細規定
排行
最近更新
- 蕪湖釋放創新“N次方”效應 數字賦能驅動產業升級
- 去年快遞服務全程時限水平有較大提升 干線運輸時限縮短
- 住建部:推動長江經濟帶高質量發展,打造區域協調發展新樣板
- 江蘇發布重大項目清單 增資擴產項目明顯增多
- 山東抓投資抓項目 新興領域投資規模持續擴大
- Gucci在2月將投放 10 個“SuperGucci”NFT
- 美國銀行:美國CBDC將保持美元作為世界儲備貨幣的地位
- 美股三大指數尾盤集體轉漲
- 光伏發電概念股有哪些?光伏發電概念龍頭股一覽
- The new iPad屏幕對比評測
- 電源接通延時器
- 汽車電子穩定系統(ESP)詳解
- 聯想B520一體機拆解
- 焦炭相關股票有哪些?焦炭概念股票龍頭一覽
- 增強信號 3G無線上網卡改裝拆解全攻略
- 盤點全球五大智能手機生產商 華為聯想入圍
- 三星新平板 Galaxy Note 10.1全拆解
- 智能監控防盜報警系統
- 格力電器未來三年股東回報規劃:每年累計分紅不低于當年凈利潤50%
- 消息稱京東科技計劃2022年在港IPO,募資10億至20億美元
- 恒大集團:呼吁境外債權人不采取任何激進的法律行動
- 海航董事長劉璐因個人原因辭職,在海航已近28年
- 青青稞酒預計2021年營收增長30%-40%,四季度凈虧損超1500萬
- 2022年在港上市募資10億美元?京東科技:不予置評
- 財政部修訂出臺《財政行政處罰聽證實施辦法》
- 賣房子需要交什么稅?賣房子必須攜帶哪些證件?
- 醫保卡的使用范圍有哪些?補牙可以使用醫保報銷嗎?
- 小產權房能過戶嗎?購買小產權房有什么風險?
- 奕東電子的實際控制人是誰?奕東電子股票上市了嗎?
- 百合股份是一家什么公司?百合股份的股票何時上市?