Linux blocking signals to Python init

前端 未结 2 2031
醉话见心
醉话见心 2021-02-14 13:43

This is a follow up to my other post Installing signal handler with Python. In short, Linux blocks all signals to PID 1 (including SIGKILL) unless Init has installed a signal h

2条回答
  •  伪装坚强ぢ
    2021-02-14 14:05

    The issue was a compatibility issue with Python compiled against uClibc 0.9.31 with old linux threads. Compiling against 0.9.32-rc3 and using NPTL has fixed the issue.

提交回复
热议问题