in reply to Re^9: threading a perl script
in thread threading a perl script
in win32\perlhost.h(1830)PerlProcFork I seethread->interp = perl_clone(aTHX, CLONEf_KEEP_PTR_TABLE | CLONEf_C +LONE_HOST);
well, instead of perl_clone there is a call to perl_clone_using. and perl_clone calls perl_clone_using.PerlInterpreter *new_perl = perl_clone_using((PerlInterpreter*)aTH +X, CLONEf_COPY_STACKS, h->m_pHostperlMem, h->m_pHostperlMemShared, h->m_pHostperlMemParse, h->m_pHostperlEnv, h->m_pHostperlStdIO, h->m_pHostperlLIO, h->m_pHostperlDir, h->m_pHostperlSock, h->m_pHostperlProc );
So, I still fail to see why my misunderstanding is manifest.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^11: threading a perl script
by BrowserUk (Patriarch) on Apr 25, 2011 at 18:59 UTC | |
by vkon (Curate) on Apr 25, 2011 at 19:19 UTC | |
by BrowserUk (Patriarch) on Apr 25, 2011 at 20:22 UTC | |
by vkon (Curate) on Apr 26, 2011 at 06:40 UTC | |
by BrowserUk (Patriarch) on Apr 26, 2011 at 07:41 UTC | |
|