Craig Kittendorf wrote:
We have COBOL programs which call ILB0ABN0 to abend which I know can be
replaced by call to CEE3ABD.
Is there a service routine to replace a call to ILBOWAT0 for creating a
"wait"?
Thanks,
Craig
Have you tried:
call 'bpx1slp' using seconds-1, seconds-2
where both arguments are pic s9(9) binary; the first
contains the number of seconds to wait, the second
returns the number of seconds remaining (ignored, I
imagine in a COBOL environment, but must be passed).
Needs to have CSSLIB in the binder SYSLIB concatenation.
or:
call 'sleep' using seconds-1 returning seconds-2
(this requires the runtime option POSIX(ON) )
Kind regards,
-Steve Comstock
----------------------------------------------------------------------
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html