STINNER Victor added the comment:

Atsuo Ishimoto added the comment:
> But I still think it is desirable for Python to have something like 
> signalfd(),  because not all functions used in the signal handler of third 
> party library can be called from user's Python script in general.

I don't think that you can use signalfd() in your case. When you use
signalfd(), signals must be blocked, so the signal handlers are *not*
called (not the Python signal handler, not the C signal handler, no
signal handler for the masked signals).

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue25482>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to