in reply to Re^10: Perl crash during perl_clone
in thread Perl crash during perl_clone
Your code, with a couple of minor corrections:
runs perfectly here! (Not bad for code you couldn't test :). So, where does that leave us?
However, my confusion was why there would be 'multiple' contexts: without any perl_clone, I expected only one perl context now.
If there is only one Perl thread, there will be only one Perl context.
The problem is, when the callback is triggered and you enter the C-level callback routine (CCB) ready to call the Perl-level callback (PCB), Perl requires that context be established (set), *before* you call the PCB. But, as the CCB is just a C subroutine, that context is not established for you, as it would be with an XS routine. So, you have to do it yourself.
Hence the need to hive it off somewhere, and establish it before calling back into Perl. "it" here being the global PerlInterpreter *saved(1|2) contexts.
The local PerlInterpreter *temp contexts within the CCBs are actually redundant in my example code, because I know that the callbacks will only ever be initiated from the C-level timer threads. Ie. they will never be called from an existing Perl context.
But, and it is a big one, you haven't clarified--nor from memory, even mentioned--what triggers the callbacks in your real application? And this could be very significant.
For example, on my OS (windows), I know that asynchronous IO callbacks generally run in the context of a completely new thread, started & 'injected' into the Perl process, by the OS. As such, they are clean environments in which we can pretty much do what we like, because as soon as we return from them, they will just disappear with no lasting effects beyond what we program into them.
However, if you are running on a *nix system, asynchronous events can be triggered through signals. Which means that the CCB will be invoked not in a new, clean thread, but rather in an existing (Perl created) thread, via a longjump. Which means that you need to be very careful what you do to both the global state, and thread-local state of perl during those CCBs. Hence the local save/restore of the temp perl context is my attempt to guess what might be necessary on your platform. (The errors you mention tell me I got it wrong!).
And this is where my ability to help you curtails rapidly.
Even if you can provide a clear and concise description of what triggers these callbacks, the chances are I will have little or no experience of those mechanisms on your platform. And even if you could put together some concise, stand-alone code that compiles on your platform and demonstrates the problems you are encountering, it almost certainly wouldn't compile and run here. Which again would leave me in the position of trying to run the code in my head--for an OS I have little knowledge of.
The bottom line is that without a concise, easily buildable, runnable demonstration of the problem, there is little anyone can really do to help you.
With such a demo, then you may well find a willing, thread-aware user on your platform (or one sufficiently similar) that can take up the baton. Either here, or perhaps the appropriate CPAN forum or mailing list (See the bottom of the threads POD).
Such a demo might even draw a response from the most-likely-to-be-able-to-help people, those on p5p. But you need to make it easy for them to try your code and see the problem.
I'm not abandoning you, just keeping it realistic about my chances of being able to help you.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^12: Perl crash during perl_clone
by perlmonk1729 (Acolyte) on Oct 29, 2010 at 18:56 UTC | |
by BrowserUk (Patriarch) on Oct 30, 2010 at 13:12 UTC | |
by perlmonk1729 (Acolyte) on Oct 31, 2010 at 08:45 UTC | |
by perlmonk1729 (Acolyte) on Nov 08, 2010 at 09:16 UTC | |
by BrowserUk (Patriarch) on Nov 08, 2010 at 13:12 UTC | |
by BrowserUk (Patriarch) on Nov 08, 2010 at 13:42 UTC | |
| |
by perlmonk1729 (Acolyte) on Nov 08, 2010 at 11:47 UTC |