溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

[Linux進(jìn)程]一個(gè)完整的進(jìn)程操作實(shí)例

發(fā)布時(shí)間:2020-07-22 03:14:31 來源:網(wǎng)絡(luò) 閱讀:1005 作者:銀河星君 欄目:編程語言
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <unistd.h>
#include <sys/wait.h>
#include <string.h>
#include <error.h>
char command[256]; 
void main() 
{ 
  int rtn; /*子進(jìn)程的返回?cái)?shù)值*/ 
  while(1) 
  { 
    printf( ">" );              //從終端讀取要執(zhí)行的命令 
    fgets(command, 256, stdin); //將命令數(shù)據(jù)存放到command中
    command[strlen(command)-1] = 0; 
    if (fork() == 0 )          //在子進(jìn)程中執(zhí)行這個(gè)命令
    {  
      execlp(command,command,NULL); 
      //如果exec函數(shù)返回,表明沒有正常執(zhí)行命令,打印錯(cuò)誤信息
      perror(command); 
      exit(1); 
    } 
    else  //在父進(jìn)程中等待字進(jìn)程結(jié)束,并且打印子進(jìn)程的返回值
    { 
      wait( &rtn ); 
      printf("子進(jìn)程返回%d\n",rtn); 
      exit(0);
    } 
  } 
  exit(0);
}


向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI