RE: threads in perl

2004-01-25 Thread Igor Ryaboy
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of zentara Sent: Thursday, January 22, 2004 9:11 PM To: [EMAIL PROTECTED] Subject: Re: threads in perl On Thu, 22 Jan 2004 08:22:04 +0200, [EMAIL PROTECTED] (Igor Ryaboy) wrote: >Hi, >Thanks for your help, 1

RE: threads in perl

2004-01-21 Thread Igor Ryaboy
Igor Ryaboy wrote: > I have no problem to alarm when timeout occurs in specific thread, I have > a difficulty to abort a "system" command in that thread. in that case, fork a different process in your thread, replace system with exec and use the pid of the newly created process

RE: threads in perl

2004-01-20 Thread Igor Ryaboy
I have no problem to alarm when timeout occurs in specific thread, I have a difficulty to abort a "system" command in that thread. -Original Message- From: david [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 20, 2004 9:14 PM To: [EMAIL PROTECTED] Subject: RE: threads in p

RE: threads in perl

2004-01-20 Thread Igor Ryaboy
d if it takes more than define timeout. Thanks, Igor -Original Message- From: david [mailto:[EMAIL PROTECTED] Sent: Monday, January 19, 2004 9:15 PM To: [EMAIL PROTECTED] Subject: RE: threads in perl Igor Ryaboy wrote: > Hi > I want to kill a specific thread and thread->list to be u

RE: threads in perl

2004-01-19 Thread Igor Ryaboy
Hi, Thanks for your tips, Where can I get those modules? Igor -Original Message- From: david [mailto:[EMAIL PROTECTED] Sent: Monday, January 19, 2004 9:15 PM To: [EMAIL PROTECTED] Subject: RE: threads in perl Igor Ryaboy wrote: > Hi > I want to kill a specific thread and thread

RE: threads in perl

2004-01-17 Thread Igor Ryaboy
Hi I want to kill a specific thread and thread->list to be updated (Like thread->join but without waiting). Igor -Original Message- From: david [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 14, 2004 9:15 PM To: [EMAIL PROTECTED] Subject: RE: threads in perl Igor Ryaboy

RE: threads in perl

2004-01-14 Thread Igor Ryaboy
PROTECTED] (Igor Ryaboy) wrote: >Hi All! > >I am running a multithread program and threads may stuck. I need to be able to >terminate those threads after some defined period of time. I can't use a detach >because I don't want to leave this thread run forever and I can

threads in perl

2004-01-14 Thread Igor Ryaboy
Hi All! I am running a multithread program and threads may stuck. I need to be able to terminate those threads after some defined period of time. I can't use a detach because I don't want to leave this thread run forever and I can't use join because the thread never ends. Any ideas? Please help

threads in perl

2004-01-13 Thread Igor Ryaboy
y ideas? Please help :) Igor -Original Message- From: zentara [mailto:[EMAIL PROTECTED] Sent: Monday, October 13, 2003 8:19 PM To: [EMAIL PROTECTED] Subject: Re: FW: threads in perl On Mon, 13 Oct 2003 18:29:09 +0200, [EMAIL PROTECTED] (Igor Ryaboy) wrote: >Very Nice , >There is on

RE: threads in perl

2003-10-13 Thread Igor Ryaboy
sage- From: zentara [mailto:[EMAIL PROTECTED] Sent: Monday, October 13, 2003 8:19 PM To: [EMAIL PROTECTED] Subject: Re: FW: threads in perl On Mon, 13 Oct 2003 18:29:09 +0200, [EMAIL PROTECTED] (Igor Ryaboy) wrote: >Very Nice , >There is only one unsolved issue here: Your program may exit w

RE: FW: threads in perl

2003-10-13 Thread Igor Ryaboy
out threads::Pool? -Original Message- From: zentara [mailto:[EMAIL PROTECTED] Sent: Monday, October 13, 2003 1:16 AM To: [EMAIL PROTECTED] Subject: Re: FW: threads in perl On Sun, 12 Oct 2003 15:21:54 +0200, [EMAIL PROTECTED] (Igor Ryaboy) wrote: >This is useful, thanks, but: >

FW: threads in perl

2003-10-12 Thread Igor Ryaboy
n't know which thread should I join. Thanks Igor -Original Message- From: zentara [mailto:[EMAIL PROTECTED] Sent: Sunday, October 12, 2003 2:47 PM To: [EMAIL PROTECTED] Subject: Re: threads in perl On Sun, 12 Oct 2003 08:24:52 +0200, [EMAIL PROTECTED] (Igor Ryaboy) wrote: >I

RE: threads in perl

2003-10-11 Thread Igor Ryaboy
; in some way? THANKS A LOT Igor -Original Message- From: zentara [mailto:[EMAIL PROTECTED] Sent: Friday, October 10, 2003 7:44 PM To: [EMAIL PROTECTED] Subject: Re: threads in perl On Wed, 8 Oct 2003 13:13:13 +0200, [EMAIL PROTECTED] (Igor Ryaboy) wrote: >Hi, >I need help in s

threads in perl

2003-10-08 Thread Igor Ryaboy
Hi, I need help in simple threaded solution. How can I join the active thread? After I was started the thread I want him to join itself at the end and go back to the main Example: # main program $thr1=new threads \&sub_name; $thr2=new threads \&sub_name; $thr3=new threads \&sub_name; $thr4=new t