Ask a Question related to PERL Miscellaneous, Design and Development.
-
Ganchrow Harris Peck #1
Bizarre SvTYPE after fork on W2K Server
Running ActivePerl 5.8.0 build 806 on Winows2K Server SP4.
A particular program I run tries once per day to fork off a process. It's
always worked before but has now recently stopped.
The syntax of the perl code is:
exec($CMD_vb) unless fork;
The child process never starts and the parent immediately terminates.
The error I get is Bizarre SvTYPE [53] at script.pl line ###.
Any idea what could possibly have suddenly caused this to occur?
--
To e-mail me directly, please change "nospam" in my e-mail address to
"yahoo".
Thanks,
Ganchrow
Ganchrow Harris Peck Guest
-
Fonts are there, then they're not. Bizarre.
I am using InDesign CS on a pc. I use a limited number of fonts to layout our monthly newsletter. I installed the fonts I needed and they were... -
fork problems with Net::Server
michaelbell <member43197@dbforums.com> wrote: One off initialisation? Consider mod_perl and start-time initialisation, then, which will go some... -
[PHP] Bizarre SQl, if issue....
Did you try to print the content of the variable? What does it contain? On Tue, 29 Jul 2003 13:29:10 -0400 "Mike At Spy"... -
Bizarre SQl, if issue....
Hey, I've got a weird issue. I have some code, an MySQL statement, that returns an empty set, like this: $person = mysql_query("Some Statement... -
Bizarre IE6 CSS error
Hi all, I have the weirdest thing going on... it's hard even to describe, but bascically, IE6 seems to interpret differently the margins/padding... -
Ganchrow Harris Peck #2
Re: Bizarre SvTYPE after fork on W2K Server
"Ganchrow Harris Peck" <ganchrow@nospam.com> wrote in message
news:er07b.19607$x_5.9268@twister.nyc.rr.com...Interestingly enough (well interesting to me anyway) this Bizarre SvTYPE> Running ActivePerl 5.8.0 build 806 on Winows2K Server SP4.
>
> A particular program I run tries once per day to fork off a process. It's
> always worked before but has now recently stopped.
>
> The syntax of the perl code is:
> exec($CMD_vb) unless fork;
>
> The child process never starts and the parent immediately terminates.
>
> The error I get is Bizarre SvTYPE [53] at script.pl line ###.
>
> Any idea what could possibly have suddenly caused this to occur?
>
error does not occur with the command:
system(1, $CMD);
which I thought did exactly the same thing as
exec($CMD) unless fork;
--
To e-mail me directly, please change "nospam" in my e-mail address to
"yahoo".
Thanks,
Ganchrow
Ganchrow Harris Peck Guest
-
Ganchrow Harris Peck #3
Re: Bizarre SvTYPE after fork on W2K Server
"Ganchrow Harris Peck" <ganchrow@nospam.com> wrote in message
news:4H07b.89212$ev.18680665@twister.nyc.rr.com...It's> "Ganchrow Harris Peck" <ganchrow@nospam.com> wrote in message
> news:er07b.19607$x_5.9268@twister.nyc.rr.com...> > Running ActivePerl 5.8.0 build 806 on Winows2K Server SP4.
> >
> > A particular program I run tries once per day to fork off a process.>> > always worked before but has now recently stopped.
> >
> > The syntax of the perl code is:
> > exec($CMD_vb) unless fork;
> >
> > The child process never starts and the parent immediately terminates.
> >
> > The error I get is Bizarre SvTYPE [53] at script.pl line ###.
> >
> > Any idea what could possibly have suddenly caused this to occur?
> >
> Interestingly enough (well interesting to me anyway) this Bizarre SvTYPE
> error does not occur with the command:
>
> system(1, $CMD);
>
> which I thought did exactly the same thing as
>
> exec($CMD) unless fork;
>
>
OK, how about this:
sub myfork { fork; }
When the myfork sub is called as
&myfork;
I get a windows error.
When it's called as:
&myfork();
No error.
Hmm ...
--
To e-mail me directly, please change "nospam" in my e-mail address to
"yahoo".
Thanks,
Ganchrow
Ganchrow Harris Peck Guest



Reply With Quote

