Re: Threads?
"Mark Hahn" <[email protected]> Tue, 6 Apr 2004 10:40:40 -0700
| Newsgroups | gmane.comp.lang.prothon.devel |
|---|---|
| Message-ID | <[email protected]> |
"Ben Laurie" <[email protected]> wrote > Ben Collins wrote: > > I can't see us > > doing prothon without threads. > > I'm curious to know why not? > The biggest problem is that our garbage collector runs in a seperate thread from the application. We could have the interpreter stop now and then and run the GC, but it's not in our current design. It always just boils down to extra work of course. How much of the "marketplace" is going to want to run threadless? I can't imagine Apache running threadless for example.