> >
> > #define PERL_STARTUP_DONE_CHECK 1
> >
>
> Thanks Gerald, this worked like a charm! And thanks to everyone else for
> the input on this one. It really helped ALOT!
>
Great :-)
> Now all I have to do is rebuild perl with USE_THREADS. I had someone else
> play with getting mod_perl setup under NT and i don't think that they did
> it quite right. It seems like I only have one interpreter thread that is
> being shared by all the different apache child threads. Does this sound
> like something that could happen if your perl binary didn't have threads
> stuff compilled in?
>
mod_perl under Win32 always just uses one interpreter, all perl requests are
serialized. This has nothing to do with USE_THREADS. Nobody had made a
threaded mod_perl so far and the thread support in perl 5.005 itself is
experimetal (for example it has problems in regex's)
Gerald