in reply to Re: Win32::OLE and fork causes null pointer exception
in thread Win32::OLE and fork causes null pointer exception
use strict; use warnings; use Thread; use Win32::OLE; Win32::OLE->Option(Warn => 3); my $thread = Thread->new(\&TEST_THREAD, ("arg1", "agr2")); my $rc = $thread->eval; print $rc; print "\nI'm ending now.\n"; sub TEST_THREAD{ my ($arg1, $arg2) = (@_); return "$arg1\t$arg2"; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Win32::OLE and fork causes null pointer exception
by erroneousBollock (Curate) on Nov 15, 2007 at 16:15 UTC | |
by jrsimmon (Hermit) on Nov 15, 2007 at 16:34 UTC | |
by jrsimmon (Hermit) on Nov 15, 2007 at 16:45 UTC | |
by jrsimmon (Hermit) on Nov 27, 2007 at 23:18 UTC |