Re: Help needed
[email protected] (Martin Roos) Wed, 07 Feb 2007 16:01:07 +0100
| Newsgroups | perl.ithreads |
|---|---|
| Message-ID | <[email protected]> |
What you need is an application that shares it's data over sockets with 10 different "client" programs that are all executed from their own xterms or whatever you meant in the expression "different windows". You don't really need 10 threads for this, use a server/client model and sockets, believe me, considering how ithreads work it will be easier not to "ithread" it, especially since you don't seem to really know what you're about to do there. Martin - offensive, critical, brutally honest as always BTR Naidu wrote: > Hi, > > I wanted to write a perl script in which there are 10 threads created and > all these 10 threads should be executed in 10 different command window. > The > thread is running under windows. > > Did lot of google but no info on the same. Can anybody help me in solving > this? >