Thread issue

Sean Kelly sean at f4.ca
Mon Jan 7 07:07:09 PST 2008


Raynor wrote:
> Hi, I try to make a client/server application but i have issues with 
> threads.
> 
> import std.thread;
> import std.socket;
> import std.stdio;
> 
> class Class1
> {
>     Thread listeningThread;
>     Socket listeningSocket;
> 
>     this()
>     {
>         listeningThread = new Thread(&Listen);
>         listeningThread.start();
           listeningThread.wait();


Try adding this.  Phobos applications doesn't bother to wait for 
executing threads before terminating.


Sean


More information about the Digitalmars-d-learn mailing list