Sorry for the late reply, missed your initial response. > "Merlin Moncure" <[EMAIL PROTECTED]> writes: > >> Does anyone have any more? > > > win32 signal safe socket handler > > I thought that was solved long ago?
As magnus wrote, we need to confirm that ssl sockets don't block singals while waiting or they will not execute signals until a query runs. > > win32 query cancel in psql (?) > > What's the issue here? Win32 ctrl-c handler runs in a separate thread which ultimately calls TerminateProcess(). Problem is does an immediate kill which does not send the cancel signal to the backend. The solution is to install a custom ctrl-c handler (in fact a patch was submitted to do this) which fires the appropriate signal. However, this code runs a separate thread...the original patch (by Luf) was rejected because it did not address thread safety issues. Merlin ---------------------------(end of broadcast)--------------------------- TIP 2: you can get off all lists at once with the unregister command (send "unregister YourEmailAddressHere" to [EMAIL PROTECTED])