Daemon函數的用法

Daemon函數的用法函數

說明:spa

讓一個程序後臺運行。.net

原型:code

 

[c-sharp] view plain copy print?
  1. #include <unistd.h>  
  2.   
  3. int daemon(int nochdir, int noclose);  

blog

 

參數:進程

nochdir爲零時,當前目錄變爲根目錄,不然不變;ip

noclose爲零時,標準輸入、標準輸出和錯誤輸出重導向爲/dev/null,也就是不輸出任何信 息,不然照樣輸出。get

返回值:原型

deamon()調用了fork(),若是fork成功,那麼父進程就調用_exit(2)退出,因此看到的錯誤信息 所有是子進程產生的。若是成功函數返回0,不然返回-1並設置errnostring

示例:

 

[c-sharp] view plain copy print?
  1. #include <stdio.h>  
  2. #include <stdlib.h>  
  3. #include <unistd.h>  
  4. #include <fcntl.h>  
  5. #include <limits.h>  
  6.   
  7. int main(int argc, char *argv[])  
  8. {  
  9.     char strCurPath[PATH_MAX];  
  10.   
  11.     if(daemon(1, 1) < 0)  
  12.     {  
  13.         perror("error daemon.../n");  
  14.         exit(1);  
  15.     }  
  16.     sleep(10);  
  17.   
  18.     if(getcwd(strCurPath, PATH_MAX) == NULL)  
  19.     {  
  20.         perror("error getcwd");  
  21.         exit(1);  
  22.     }  
  23.     printf("%s/n", strCurPath);  
  24.     return 0;  
  25. }  

 

假如運行成功,父進程在daemon函數運行完畢後自殺,之後的休眠和打印所有是子進程來運行。

能夠修改daemon函數的參數來查看效果。

能夠去掉daemon一句,用./a.out&來驗證效果。

相關文章
相關標籤/搜索