Custom C function shutdown-signaling
How do I signal a custom C function that the Postmaster wants to shut down ?
I want to use "pg_ctl restart -mf" and not "pg_ctl restart -mi" because
of data integrity concerns...
Any ideas ?
Thanks
/Otto Blomqvist
"Otto Blomqvist" <o.blomqvist@secomintl.com> writes:
How do I signal a custom C function that the Postmaster wants to shut down ?
Do "CHECK_FOR_INTERRUPTS();" at a suitable spot in the C function's main
loop.
regards, tom lane
Once again Tom comes threw and saves the day...!
Thanks Tom !
/Otto Blomqvist
"Tom Lane" <tgl@sss.pgh.pa.us> wrote in message
news:18913.1120605014@sss.pgh.pa.us...
"Otto Blomqvist" <o.blomqvist@secomintl.com> writes:
How do I signal a custom C function that the Postmaster wants to shut
down ?
Show quoted text
Do "CHECK_FOR_INTERRUPTS();" at a suitable spot in the C function's main
loop.regards, tom lane
---------------------------(end of broadcast)---------------------------
TIP 8: explain analyze is your friend