Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
Z
ZLMediaKit
概览
Overview
Details
Activity
Cycle Analytics
版本库
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
问题
0
Issues
0
列表
Board
标记
里程碑
合并请求
0
Merge Requests
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
Snippets
成员
Collapse sidebar
Close sidebar
活动
图像
聊天
创建新问题
作业
提交
Issue Boards
Open sidebar
张翔宇
ZLMediaKit
Commits
e065b1df
Commit
e065b1df
authored
Apr 09, 2022
by
xiongziliang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
子进程重启失败时,不应通知守护进程退出,确保子进程重启成功
parent
c334dcfd
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
18 行增加
和
13 行删除
+18
-13
server/System.cpp
+13
-10
server/System.h
+1
-1
server/main.cpp
+4
-2
没有找到文件。
server/System.cpp
查看文件 @
e065b1df
...
...
@@ -81,42 +81,45 @@ static void sig_crash(int sig) {
#endif // !defined(ANDROID) && !defined(_WIN32)
void
System
::
startDaemon
()
{
void
System
::
startDaemon
(
bool
&
kill_parent_if_failed
)
{
kill_parent_if_failed
=
true
;
#ifndef _WIN32
static
pid_t
pid
;
do
{
do
{
pid
=
fork
();
if
(
pid
==
-
1
)
{
if
(
pid
==
-
1
)
{
WarnL
<<
"fork失败:"
<<
get_uv_errmsg
();
//休眠1秒再试
sleep
(
1
);
continue
;
}
if
(
pid
==
0
)
{
if
(
pid
==
0
)
{
//子进程
return
;
}
//父进程,监视子进程是否退出
DebugL
<<
"启动子进程:"
<<
pid
;
DebugL
<<
"启动子进程:"
<<
pid
;
signal
(
SIGINT
,
[](
int
)
{
WarnL
<<
"收到主动退出信号,关闭父进程与子进程"
;
kill
(
pid
,
SIGINT
);
kill
(
pid
,
SIGINT
);
exit
(
0
);
});
do
{
do
{
int
status
=
0
;
if
(
waitpid
(
pid
,
&
status
,
0
)
>=
0
)
{
if
(
waitpid
(
pid
,
&
status
,
0
)
>=
0
)
{
WarnL
<<
"子进程退出"
;
//休眠3秒再启动子进程
sleep
(
3
);
//重启子进程,如果子进程重启失败,那么不应该杀掉守护进程,这样守护进程可以一直尝试重启子进程
kill_parent_if_failed
=
false
;
break
;
}
DebugL
<<
"waitpid被中断:"
<<
get_uv_errmsg
();
}
while
(
true
);
}
while
(
true
);
}
while
(
true
);
}
while
(
true
);
#endif // _WIN32
}
...
...
server/System.h
查看文件 @
e065b1df
...
...
@@ -16,7 +16,7 @@
class
System
{
public
:
static
std
::
string
execute
(
const
std
::
string
&
cmd
);
static
void
startDaemon
();
static
void
startDaemon
(
bool
&
kill_parent_if_failed
);
static
void
systemSetup
();
};
...
...
server/main.cpp
查看文件 @
e065b1df
...
...
@@ -206,9 +206,10 @@ int start_main(int argc,char *argv[]) {
#if !defined(_WIN32)
pid_t
pid
=
getpid
();
bool
kill_parent_if_failed
=
true
;
if
(
bDaemon
)
{
//启动守护进程
System
::
startDaemon
();
System
::
startDaemon
(
kill_parent_if_failed
);
}
//开启崩溃捕获等
System
::
systemSetup
();
...
...
@@ -317,7 +318,8 @@ int start_main(int argc,char *argv[]) {
ErrorL
<<
"程序启动失败,请修改配置文件中端口号后重试!"
<<
endl
;
sleep
(
1
);
#if !defined(_WIN32)
if
(
pid
!=
getpid
())
{
if
(
pid
!=
getpid
()
&&
kill_parent_if_failed
)
{
//杀掉守护进程
kill
(
pid
,
SIGINT
);
}
#endif
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论