in reply to Re: Perl forking and shared memory strangeness under Windows
in thread Perl forking and shared memory strangeness under Windows
use strict; $|++; # do some unrelated forking with $share in scope unless( fork ) { exit 0 } require Win32::MMF::Shareable; tie( my $share, 'Win32::MMF::Shareable', 'share' ) || die; $share = 'foo'; # make sure child exits before continuing sleep 1; # set/get crashes print "----before\n"; $share = 'bar'; my $temp = $share; print "----after\n";
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Re: Re: Perl forking and shared memory strangeness under Windows
by xiper (Friar) on Feb 24, 2004 at 00:52 UTC |