Re: How to handle HUP signals

2012-10-18 Thread Wes Hardaker
writes: > Is there a good way to determine that a HUP signal has been received from > within a config handler? The "free" callback function will be called after a HUP before the next re-read. It should be what you use to free any resources and get a clean start before the next config-read comes

How to handle HUP signals

2012-10-12 Thread jregovic
Is there a good way to determine that a HUP signal has been received from within a config handler?If I have created a config handler to dynamically assign indexes and I track the next available index with a variable, how can I tell that I shoudl reset my index variable within my config handler?Than