in reply to Re^2: How to add timer
in thread How to add timer

Add a check for that.

Replies are listed 'Best First'.
Re^4: How to add timer
by kkavitha (Initiate) on Sep 02, 2009 at 12:27 UTC

    Thanks for your reply. Example, having timer subroutine as timerProducts($pdt) Calling like,

    sub start(){ &timerProducts($pdt) print "test one" callpdt($pdt); }

    Once called timerProducts, it should paralelly print the message "test one" and then call the subroutine callpdt. But it is not happened.It is executing only timerProducts. It is not allowed to run the callpdt subroutine.