Re: [UDT] udt multithreading problem
Brought to you by:
lilyco
From: Yunhong Gu <yu...@la...> - 2008-04-07 20:26:58
|
How exactly did you do it? create socket A, bind to port P1, and listen(A) in thread 1; create socket B, bind to port P2, and listen(B) in thread 2. Note that P1 cannot be the same as P2. If you did as described above, at which point the thread is blocked? Yunhong Gu, Research Scientist National Center for Data Mining University of Illinois at Chicago SEO 713, M/C 249, 851 S Morgan St Chicago, IL 60607-7045 Tel (312) 413-9576 Fax (312) 355-0373 On Mon, 7 Apr 2008, k wrote: > i use the udt4.2 to set up a multi-threading server , the server need listen on two port,but when i start the server, the server blocked at the listen() function, and only one thread start,the other was waiting, what i need do to solve the question? > thank u! |