- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我有一个长时间运行的进程 (node.js),它调用 fork(作为 C++ 模块的一部分)。这会将新进程创建为 node.js 进程的子进程。但是,没有任何东西会为这个子进程等待/waitpid,所以它在终止后仍然是僵尸。
是否有可能在当前进程不是其父进程的情况下 fork() 一个进程,以便在终止时它不会保持僵尸状态而是被清理?
如果不是,我能否以某种方式表明我不会对 child 调用 waitpid 并且不关心它何时终止?
如果这一切都失败了,我可以编写/找到一个可以执行 waitpid 的 native 模块,但我需要确定它会:
谢谢!
最佳答案
这是我用来创建守护进程的代码。注释描述了为什么完成每个步骤。
Status daemon_init(void)
{
pid_t pid;
int fh;
/*-----------------------------------------------------------------------
; From the Unix Programming FAQ (corraborated by Stevens):
;
; 1. 'fork()' so the parent can exit, this returns control to the command
; line or shell invoking your program. This step is required so that
; the new process is guaranteed not to be a process group leader. The
; next step, 'setsid()', fails if you're a process group leader.
;---------------------------------------------------------------------*/
pid = fork();
if (pid == (pid_t)-1)
return retstatus(false,errno,"fork()");
else if (pid != 0) /* parent goes bye bye */
_exit(EXIT_SUCCESS);
/*-------------------------------------------------------------------------
; 2. 'setsid()' to become a process group and session group leader. Since
; a controlling terminal is associated with a session, and this new
; session has not yet acquired a controlling terminal our process now
; has no controlling terminal, which is a Good Thing for daemons.
;
; _Advanced Programming in the Unix Environment_, 2nd Edition, also
; ignores SIGHUP. So adding that here as well.
;-----------------------------------------------------------------------*/
setsid();
set_signal_handler(SIGHUP,SIG_IGN); /* ignore this signal for now */
/*-------------------------------------------------------------------------
; 3. 'fork()' again so the parent, (the session group leader), can exit.
; This means that we, as a non-session group leader, can never regain a
; controlling terminal.
;------------------------------------------------------------------------*/
pid = fork();
if (pid == (pid_t)-1)
return retstatus(false,errno,"fork(2)");
else if (pid != 0) /* parent goes bye bye */
_exit(EXIT_SUCCESS);
/*-------------------------------------------------------------------------
; 4. 'chdir("/")' to ensure that our process doesn't keep any directory in
; use. Failure to do this could make it so that an administrator
; couldn't unmount a filesystem, because it was our current directory.
;
; [Equivalently, we could change to any directory containing files
; important to the daemon's operation.]
;
; I just made sure the name of the script we are using contains the full
; path.
;-------------------------------------------------------------------------*/
chdir("/");
/*-----------------------------------------------------------------------
; 5. 'umask(022)' so that we have complete control over the permissions of
; anything we write. We don't know what umask we may have inherited.
;-----------------------------------------------------------------------*/
umask(022);
/*-----------------------------------------------------------------------
; 6. 'close()' fds 0, 1, and 2. This releases the standard in, out, and
; error we inherited from our parent process. We have no way of knowing
; where these fds might have been redirected to. Note that many daemons
; use 'sysconf()' to determine the limit '_SC_OPEN_MAX'.
; '_SC_OPEN_MAX' tells you the maximun open files/process. Then in a
; loop, the daemon can close all possible file descriptors. You have to
; decide if you need to do this or not. If you think that there might
; be file-descriptors open you should close them, since there's a limit
; on number of concurrent file descriptors.
;
; 7. Establish new open descriptors for stdin, stdout and stderr. Even if
; you don't plan to use them, it is still a good idea to have them
; open. The precise handling of these is a matter of taste; if you
; have a logfile, for example, you might wish to open it as stdout or
; stderr, and open '/dev/null' as stdin; alternatively, you could open
; '/dev/console' as stderr and/or stdout, and '/dev/null' as stdin, or
; any other combination that makes sense for your particular daemon.
;
; We do this here via dup2(), which combines steps 6 & 7.
;------------------------------------------------------------------------*/
fh = open(DEV_NULL,O_RDWR);
if (fh == -1)
return retstatus(false,errno,"open(" DEV_NULL ")");
assert(fh > 2);
dup2(fh,STDIN_FILENO);
dup2(fh,STDOUT_FILENO);
dup2(fh,STDERR_FILENO);
close(fh);
return c_okay;
}
如果您想在上下文中查看此函数,可以在此处查看:https://github.com/spc476/syslogintr/blob/master/syslogintr.c
关于c - fork 一个长时间运行的进程并避免调用 waitpid 来清理僵尸?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14971314/
我需要为元素属性动态构建 XPath 查询,其中属性值由用户提供。我不确定如何清理或清理此值以防止 XPath 等同于 SQL 注入(inject)攻击。例如(在 PHP 中): xpath("//m
问题很简单:在使用 PHPmailer 类时我应该使用任何类型的清理吗? 我制作了使用 phpmailer 类发送电子邮件的简单发送邮件表单。目前我只使用“htmlspecialchars”进行清理(
你可以在python中创建一个在for循环退出时运行清理代码的迭代吗?就像是: from random import randint class Iterable: def __iter__(
假设我定期将数据插入 SQLite 数据库,然后清除前 50% 的数据,但我不清理。 我现在是否有类似文件前 50% 的清零页面之类的东西?如果我添加另一批数据,我是否正在填写那些清零的页面? 手册中
我有一堆 HTML 代码,我想在其中删除所有 HTML 标记。 我认为 Regex(正则表达式)可以做到这一点。通过搜索和替换,我将如何执行此操作? 我尝试了 ,我认为 * 是通配符,但显然不是。
我仍在学习 Haskell,我想知道是否有一种不太冗长的方法来使用 1 行代码来表达以下语句: map (\x -> (x, (if mod x 3 == 0 then "fizz" else "")
我需要怎么做才能正确清理/转义程序化SSH命令中输入的参数? 例如,路径参数- public boolean exists(String path) { try { Chann
这个问题已经有答案了: How to clear the canvas for redrawing (25 个回答) 已关闭10 个月前。 我目前正在尝试创建一个带有雨滴落下的 Canvas ,我唯一
我目前正在使用此过程来清理/过滤用户输入的评论 -> 这个是用来去掉斜线的……和 if (get_magic_quotes_gpc()) { function stripslashe
是否可以在 portal_setup 中删除旧的导入配置文件。 目前,我的网站上有许多可追溯到 2009 年的条目:: import-all-profile-Products.Archetypes_
假设我有多个指令,包括以下内容: ...template content... ...template content... 你如何销毁指令?通常我会在 jquery 中做一些我 $('#2').re
我正在开发一个可移植java应用程序,它可以在用户的PC(Windows XP)上动态生成一些文件。现在,我想要的是在java程序退出后删除这些临时文件。显然,java的文件删除机制是不可信的。即
我有一个 argv c 程序,它反转单词,并查看它是否是回文。我只是想清理输出并让它打印原始输入而不是相反的输入,但由于它是 argv,我似乎不知道该怎么做。 int main(int argc, c
我的网页上有一篇用 markdown 写的文章,我想在索引页上显示一份简短的简历。 问题是正文有markdown,我想在简历上显示纯文本。 例如: Article text: Hello people
在下面的代码片段中,可以做些什么来a)让编译器安静,b)清理交叉的指针困惑? extern struct tree *sintablein[sintablesize]; struct tree *(*
我试图弄清楚 WeakHashMap 在垃圾收集后如何清理。正如你们中许多人可能知道的那样,当 WeakHashMap 条目的键被垃圾回收时,它会自动删除。但是,例如,如果我做这样的事情: List>
我对构建的理解是,它只编译上次构建中编辑过的Java文件,而干净构建将删除所有类文件并重新编译所有文件。那么,当单独构建就足以满足我提供最新版本的类文件的需要时,干净构建的效用是什么? 最佳答案 有时
是否有任何简单的(内置的、附加的、开源的或商业的)在 Postgresql(主从)上进行复制,以便在复制时清理从属内部的数据以符合 PCI 合规性? ETL工具怎么样?它不一定是瞬时的……最多一个小时
我有一个将数据保存到 MySQL 数据库的网站 在将 HTML 插入 MySQL 或在我的网站上显示它时,我应该转义 HTML 吗? 理想情况下,我想将原始 HTML 输入到我的数据库中,并在每次从中
我知道我已经asked一个关于 sanitizer 和转义的问题,但我有一个问题没有得到回答。 好了,到此为止。如果我有一个 PHP 脚本并且我 GET用户输入和SELECT它来自 mySQL 数据库
我是一名优秀的程序员,十分优秀!