Re: How can I time how much each thread takes?

2007-04-04 Thread Marc 'BlackJack' Rintsch
In [EMAIL PROTECTED], [EMAIL PROTECTED] wrote: I have the following code which spawn a number of thread and do something (in the run method of MyThread). how can I record how much time does EACH thread takes to complete the 'run'? for j in range(threadCount): t =

Re: How can I time how much each thread takes?

2007-04-04 Thread 7stud
On Apr 3, 11:00 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi, I have the following code which spawn a number of thread and do something (in the run method of MyThread). how can I record how much time does EACH thread takes to complete the 'run'? for j in range(threadCount):

How can I time how much each thread takes?

2007-04-03 Thread [EMAIL PROTECTED]
Hi, I have the following code which spawn a number of thread and do something (in the run method of MyThread). how can I record how much time does EACH thread takes to complete the 'run'? for j in range(threadCount): t = MyThread(testNo) threads.append(t)