Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
B
brpc
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
brpc
Commits
accaeb74
Commit
accaeb74
authored
Feb 23, 2018
by
osdaniellee
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add -graceful_quit_on_sigterm for SIGTERM handler
parent
30b1d7f2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
9 deletions
+13
-9
controller.cpp
src/brpc/controller.cpp
+13
-9
No files found.
src/brpc/controller.cpp
100644 → 100755
View file @
accaeb74
...
...
@@ -77,6 +77,8 @@ BAIDU_REGISTER_ERRNO(brpc::EITP, "Bad Itp response");
namespace
brpc
{
DEFINE_bool
(
graceful_quit_on_sigterm
,
false
,
"Register SIGTERM handle func to quit graceful"
);
const
IdlNames
idl_single_req_single_res
=
{
"req"
,
"res"
};
const
IdlNames
idl_single_req_multi_res
=
{
"req"
,
""
};
const
IdlNames
idl_multi_req_single_res
=
{
""
,
"res"
};
...
...
@@ -1403,15 +1405,17 @@ static void RegisterQuitSignalOrDie() {
}
}
prev
=
signal
(
SIGTERM
,
quit_handler
);
if
(
prev
!=
SIG_DFL
&&
prev
!=
SIG_IGN
)
{
// shell may install SIGTERM of background jobs with SIG_IGN
if
(
prev
==
SIG_ERR
)
{
LOG
(
ERROR
)
<<
"Fail to register SIGTERM, abort"
;
abort
();
}
else
{
s_prev_sigterm_handler
=
prev
;
LOG
(
WARNING
)
<<
"SIGTERM was installed with "
<<
prev
;
if
(
FLAGS_graceful_quit_on_sigterm
)
{
prev
=
signal
(
SIGTERM
,
quit_handler
);
if
(
prev
!=
SIG_DFL
&&
prev
!=
SIG_IGN
)
{
// shell may install SIGTERM of background jobs with SIG_IGN
if
(
prev
==
SIG_ERR
)
{
LOG
(
ERROR
)
<<
"Fail to register SIGTERM, abort"
;
abort
();
}
else
{
s_prev_sigterm_handler
=
prev
;
LOG
(
WARNING
)
<<
"SIGTERM was installed with "
<<
prev
;
}
}
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment