/*體現(xiàn)exit和_exit的區(qū)別*/
#include
#include
#include
#include
#include
int main(void)
{
pid_t pid;
if ( (pid = fork() )==-1 ) //如果創(chuàng)建子進(jìn)程失敗
{
perror ("創(chuàng)建子進(jìn)程失敗\n"); //創(chuàng)建子進(jìn)程出錯(cuò)信息
exit(0);
}
else if(pid==0) //子進(jìn)程
{
printf("01:這是子進(jìn)程\n");
printf("02:這是子進(jìn)程,目前數(shù)據(jù)在緩沖區(qū)中");
//這個(gè)地方?jīng)]有換行符,所以不寫出數(shù)據(jù)
exit(0); //退出,強(qiáng)制清空,會(huì)輸出上面未完成數(shù)據(jù)
}
else //父進(jìn)程
{
sleep(1); //休眠一秒以確定先后順序
printf("03:這是父進(jìn)程,開始輸出\n");
printf("04:這是夫進(jìn)程,目前數(shù)據(jù)在緩沖區(qū)中"); //同樣沒有換行符
_exit(0); //_exit函數(shù)會(huì)直接丟棄相應(yīng)的數(shù)據(jù)
}
return 0;
}
分享文章:[Linux進(jìn)程]展示exit和_exit函數(shù)的區(qū)別
文章路徑:
http://weahome.cn/article/pchiio.html