"jinxidoru" <[EMAIL PROTECTED]> writes: > I had an idea for something the other day, but it now appears that it > will not work.
There is a more fundamental reason why it would not work: a non-static method can not be a signal handler, since the kernel will not supply 'this' parameter to it. Besides, all kinds of things (operator new; cout; exceptions, etc.) do not work in the (async)signal handling context, so putting any C++ into the body of a signal handler will likely only itroduce hard to replicate bugs. > I think this would be a very cool feature if possible. What's so cool about it? Sounds pretty lame to me. Cheers, -- In order to understand recursion you must first understand recursion. Remove /-nsp/ for email. _______________________________________________ help-gplusplus mailing list [email protected] http://lists.gnu.org/mailman/listinfo/help-gplusplus
