You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I just pushed a patch to ZeroMQInterface that adjusts ZmqPoll's behaviour to just return if the process gets a EINTR signal. This happens for example if the process that called ZmqPoll has a forked child process who forks a child itself (and this was exposed in https://github.com/gap-packages/JupyterKernel).
Currently we just return an empty list of results, making it impossible to decide whether we timed out, or got EINTR. This should be handled better.
The text was updated successfully, but these errors were encountered:
I just pushed a patch to ZeroMQInterface that adjusts
ZmqPoll
's behaviour to just return if the process gets aEINTR
signal. This happens for example if the process that calledZmqPoll
has a forked child process who forks a child itself (and this was exposed in https://github.com/gap-packages/JupyterKernel).Currently we just return an empty list of results, making it impossible to decide whether we timed out, or got
EINTR
. This should be handled better.The text was updated successfully, but these errors were encountered: