I have very simple constructor and destructor for some C-based library. Well, i need to catch signals like TERM and others to enforce destructor calling on perl's mandatory death with killall perl e.g. In fact i need local $SIG{TERM} for each object to be installed, written inside XS constructor. Is it possible? !thanx!

link|improve this question
feedback

1 Answer

Not exactly. A signal is sent to and trapped by a process, not objects.

Another approach might be to maintain a global list of all the objects that must be cleaned up, and install a single signal handler that will clean up each object on that list.

link|improve this answer
Thanks. It is clear for me. I'll try to create a global array of all active objects in my .pm to clean them up after signal. – kost Apr 29 '11 at 7:28
The question is how to create a signal handler inside MyModule.xs, because I want to keep this clean up array inside this module – kost Apr 29 '11 at 7:31
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.