Re: restoring signal handlers

2006-05-23 Thread Nicholas Perez
I would do a bit of research for you and get you some links and examples together, but at work, unfortunately, the internet filtering is rather draconian. So let's talk through about the ideal and how you would go about figuring this out. First, you would install the signal handler within your ow

Re: restoring signal handlers

2006-05-22 Thread Nicholas Perez
Or! You could install the signal handlers within POE so you get all of the POE dispatching goodness with your signal handlers. On 5/22/06, David Davis <[EMAIL PROTECTED]> wrote: You could move the use POE line above the two use sigtrap lines. David On 22 May 2006 14:07:57 -0700, sbk <[EMAIL PR

Re: restoring signal handlers

2006-05-22 Thread David Davis
You could move the use POE line above the two use sigtrap lines. David On 22 May 2006 14:07:57 -0700, sbk <[EMAIL PROTECTED]> wrote: hi, i'm realizing that loading POE replaces my signal handlers is there a way around this? i rather like my signal handlers ... :) they perform useful chores,

restoring signal handlers

2006-05-22 Thread sbk
hi, i'm realizing that loading POE replaces my signal handlers is there a way around this? i rather like my signal handlers ... :) they perform useful chores, like clean up shared memory segments. of course, i rather like POE, too ... it does useful things for me ... naturally, i want both! --