Bráulio Bhavamitra <[email protected]> wrote: > Eric, how with a simple monkey patch will allow a worker to not > connect with the kernel request queue?
The listen socket is inherited by default. Closing it works. You can also keep the socket open and avoid calling any accept() wrappers, that is like a "pop" operation on the queue: kgio_tryaccept in unicorn, accept/accept_nonblock/sysaccept in stdlib Also, please don't top-post (or send giant sigs). Thanks.
