Thread: Re: [HACKERS] [PATCHES] fork/exec patch

Re: [HACKERS] [PATCHES] fork/exec patch

From
"Merlin Moncure"
Date:
Dann Corbit wrote:
> By using events you don't have to poll at all.  You are waiting on the
> event.  A signal fires the event.  It is also possible to add as many
> signal types as you like, even beyond the standard UNIX batch if it
> suits your fancy.

Right: can we assume that all signals can be handled by a 'listener'
thread (listening with WaitForSingleObject) without having to notify the
main backend thread that it is signal time (especially for notifications
coming from the postmaster)?

That is the point we are unclear on and the last several posts were
discussing possibilities if the answer to that question was 'no'.

Merlin