Thread: Custom C function shutdown-signaling

Custom C function shutdown-signaling

From
"Otto Blomqvist"
Date:
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




Re: Custom C function shutdown-signaling

From
Tom Lane
Date:
"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

Re: Custom C function shutdown-signaling

From
"Otto Blomqvist"
Date:
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 ?
>
> 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
>