Skip to content
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

alias CLD to CHLD in signal handlers #3151

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions THANKS
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ Igor Petrov <igor.s.petrov@gmail.com>
INADA Naoki <methane@users.noreply.github.com>
Jakub Paweł Głazik <zytek@nuxi.pl>
Jan-Philip Gehrcke <jgehrcke@googlemail.com>
Jason Jones <jcjones@gmail.com>
Jannis Leidel <jannis@leidel.info>
Jason Madden <jason@nextthought.com>
jean-philippe serafin <serafinjp@gmail.com>
Expand Down
2 changes: 2 additions & 0 deletions gunicorn/arbiter.py
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,8 @@ def handle_chld(self, sig, frame):
self.reap_workers()
self.wakeup()

handle_cld = handle_chld # chld aliased as cld in some systems

def handle_hup(self):
"""\
HUP handling.
Expand Down