gpt4 book ai didi

linux - fork() 之后的 setsid() 无法生成核心转储

转载 作者:太空宇宙 更新时间:2023-11-04 10:43:05 24 4
gpt4 key购买 nike

为了运行程序,我写了一个shell:

#!/bin/bash
ulimit -c unlimited
ulimit -n 65535
/usr/local/bin/myprogram -D #-D here means run in daemon

当我运行命令时:kill -3 pid。它不会生成核心转储文件。在我从 shell 中删除“-D”后(注意:程序不会在守护进程中运行),然后运行命令“kill -3 pid”,它会生成一个核心转储。

我猜可能是终端 session id导致的。

在后台运行时如何生成核心转储?

fork 代码为:

void Daemonize()
{
pid_t pid, sid;
pid = fork();
if (pid < 0)
{
//Fork error
exit(EXIT_FAILURE);
}
else if (pid == 0)
{
//Child
char *daemondir;
umask(027);
sid = setsid();//it's this cause that can't generate core dump
if (sid < 0)
exit(EXIT_FAILURE);
dosomething();
...
}
//Parent exits
exit(EXIT_SUCCESS);
}

最佳答案

setsid 并不意味着不生成核心转储。

我在我的环境内核 3.10 x86_64 上测试你的代码。在我的环境中,它总是在当前目录中生成核心转储。

检查生成核心转储的目录。

您可能需要更改 [/proc/sys/kernel/]core_pattern 以更改目录。

关于linux - fork() 之后的 setsid() 无法生成核心转储,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34175728/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com