-
Notifications
You must be signed in to change notification settings - Fork 109
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: properly handle Unix signals, like SIGTERM
, for graceful exit
#1732
feat: properly handle Unix signals, like SIGTERM
, for graceful exit
#1732
Conversation
SIGTERM
, aka graceful exitSIGTERM
for graceful exit
c93b828
to
04d56ff
Compare
80a4197
to
d24d680
Compare
SIGTERM
for graceful exitSIGTERM
, for graceful exit
src/unix/ksignalhandler.hh
Outdated
/* | ||
SPDX-FileCopyrightText: 2021 Aleix Pol Gonzalez <[email protected]> | ||
|
||
SPDX-License-Identifier: LGPL-2.1-or-later |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does this license compatible with GPL3
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The "LGPL-2.1-or-later" section 3 says
- You may opt to apply the terms of the ordinary GNU General Public License instead of this License to a given copy of the Library. To do this, you must alter all the notices that refer to this License, so that they refer to the ordinary GNU General Public License, version 2, instead of to this License. (If a newer version than version 2 of the ordinary GNU General Public License has appeared, then you can specify that version instead if you wish.) Do not make any other change in these notices.
And this footnote https://www.gnu.org/licenses/gpl-faq.en.html#compat-matrix-footnote-7 in GNU's FAQ
Based on the text, we should change this file's license to GPLv3, as allowed by "LGPL-2.1-or-later".
a8e56a2
to
a9c3595
Compare
|
Related,