免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 7194 | 回复: 5
打印 上一主题 下一主题

[C] C语言编程,加入什么C语言的语句能让程序运行时直接在后台执行呢? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2013-01-24 11:09 |只看该作者 |倒序浏览
本帖最后由 sunguangshou 于 2013-01-24 11:10 编辑

C语言编程,加入什么C语言的语句能让程序运行时直接在后台执行呢?

论坛徽章:
4
水瓶座
日期:2013-09-06 12:27:30摩羯座
日期:2013-09-28 14:07:46处女座
日期:2013-10-24 14:25:01酉鸡
日期:2014-04-07 11:54:15
2 [报告]
发表于 2013-01-24 11:13 |只看该作者
NAME
       daemon - run in the background

SYNOPSIS
       #include <unistd.h>

       int daemon(int nochdir, int noclose)

论坛徽章:
0
3 [报告]
发表于 2013-01-24 11:14 |只看该作者
./a.out &



..............

论坛徽章:
0
4 [报告]
发表于 2013-02-07 13:21 |只看该作者
回复 3# lrita


我想用代码实现,谢谢

论坛徽章:
0
5 [报告]
发表于 2013-02-07 13:22 |只看该作者
linux_c_py_php 发表于 2013-01-24 11:13
NAME
       daemon - run in the background


谢谢,我试试先。

论坛徽章:
7
天蝎座
日期:2013-09-28 10:45:42双子座
日期:2013-10-16 16:27:09射手座
日期:2013-10-23 10:21:32处女座
日期:2014-09-17 16:44:332015年亚洲杯之巴林
日期:2015-04-09 17:28:01冥斗士
日期:2015-11-26 16:19:0015-16赛季CBA联赛之山东
日期:2018-03-02 23:59:31
6 [报告]
发表于 2013-03-21 23:43 |只看该作者
  1. void daemonize(const char *cmd) {

  2.     int               i, fd0, fd1, fd2;
  3.     pid_t             pid;
  4.     struct rlimit     rl;
  5.     struct sigaction  sa;


  6.     /*
  7.      * Clear file creation mask.
  8.      */
  9.     umask(0);

  10.     /*
  11.      * Get maximum number of file descriptors.
  12.      */
  13.     if (getrlimit(RLIMIT_NOFILE, &rl) < 0)
  14.         err_quit(LOG_ERR, "%s: can't get file limit", cmd);

  15.     /*
  16.      * Become a session leader to lose controlling TTY.
  17.      */
  18.     if ((pid = fork()) < 0)
  19.         err_quit(LOG_ERR, "%s: can't fork", cmd);
  20.     else if (pid != 0) /* parent */
  21.       exit(0);
  22.     setsid();

  23.     /*
  24.      * Ensure future opens won't allocate controlling TTYs.
  25.      */
  26.     sa.sa_handler = SIG_IGN;
  27.     sigemptyset(&sa.sa_mask);
  28.     sa.sa_flags = 0;
  29.     if (sigaction(SIGHUP, &sa, NULL) < 0)
  30.         err_quit(LOG_ERR, "%s: can't ignore SIGHUP");
  31.     if ((pid = fork()) < 0)
  32.         err_quit(LOG_ERR, "%s: can't fork", cmd);
  33.     else if (pid != 0)    /* parent */
  34.         exit(0);

  35.     /*
  36.      * Change the current working directory to the root so
  37.      * we won't prevent file system from being unmounted.
  38.      *
  39.      */
  40.     #if 0
  41.     if (chdir("/") < 0)
  42.         err_quit(LOG_ERR, "%s: can't change directory to /");
  43.     #endif

  44.     /*
  45.      * Close all open file descriptors.
  46.      */
  47.     if (rl.rlim_max == RLIM_INFINITY)
  48.         rl.rlim_max = 1024;
  49.     for (i = 0; i < rl.rlim_max; i++)
  50.         close(i);


  51.     /*
  52.      * Attach file descriptors 0, 1, and 2 to /dev/null.
  53.      */
  54.     fd0 = open("/dev/null", O_RDWR);
  55.     fd1 = dup(0);
  56.     fd2 = dup(0);

  57.     #if 0
  58.     /*
  59.      * Initialize the log file.
  60.      */
  61.     openlog(cmd, LOG_CONS, LOG_DAEMON);
  62.     if (fd0 != 0 || fd1 != 1 || fd2 != 2) {
  63.         syslog(LOG_ERR, "unexpected file descriptors %d %d %d",
  64.             fd0, fd1, fd2);
  65.         exit(1);
  66.     }
  67.     #endif
  68. }
复制代码
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP