Portal | IBM Manuals | Downloads | Products | Refer | Info | Programs | JCLs | Forum Rules*| Site Map | Mainframe CD 
IBMMAINFRAMES.com - IBM Mainframe Support Forums Index
 
Register
 
IBMMAINFRAMES.com - IBM Mainframe Support Forums Index FAQ Search Memberlist Usergroups Profile Log in to check your private messages Log in
 
WAIT or SLEEP utility in REXX for delay

 
Post new topic   Reply to topic    IBMMAINFRAMES.com Support Forums -> CLIST & REXX
Author Message
raak

Active User


Joined: 23 May 2006
Posts: 174
Location: chennai

PostPosted: Fri Dec 29, 2006 12:25 pm    Post subject: WAIT or SLEEP utility in REXX for delay
Reply with quote

i have a requirement in which i have to submit three jobs at a time interval of 10 minutes each. i am using a rexx routine to submit these jobs. is there any command or utility by which i can make the rexx routine to wait for 10 minutes before the second job gets submitted?

is there any WAIT or SLLEP command in rexx ?
Back to top
View user's profile Send private message
References
superk

Moderator Team Head


Joined: 26 Apr 2004
Posts: 3265
Location: Charlotte,NC USA

PostPosted: Fri Dec 29, 2006 2:53 pm    Post subject: Re: any wait utility
Reply with quote

Use the Elapsed Time function TIME(E). Read more about it here.

Of course, there's always the Unix SLEEP command, if you would prefer to call it instead. Here's one such example.

Here's a few of my own:

Code:

/* REXX WAIT */                                 
Parse Arg secs .                                 
If Datatype(secs) <> 'NUM' Then secs = 60       
rc = Time(R)                                     
Do Forever                                       
  n = Time(E)                                   
  If n >= secs Then Leave                       
End                                             
Exit 0                                           


Code:

/* REXX */                                                 
Say "Enter Number of Seconds"                             
Parse Pull seconds                                         
If seconds = "" Then seconds = 5                           
seconds = Abs(seconds)                                     
seconds = Trunc(seconds,0)                                 
"ALLOC DD(stdout) DA(*) REU"                               
"ALLOC DD(stderr) DA(*) REU"                               
"ALLOC DD(stdin) DUMMY REU"                               
"CALL *(AOPBATCH) 'sleep "seconds"'"                       
Exit 0
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    IBMMAINFRAMES.com Support Forums -> CLIST & REXX All times are GMT + 6 Hours
Page 1 of 1