Re: Adding 90 seconds to 8 byte TOD FIELD

2018-12-25 Thread Peter Relson
>I am using it to set a value for ECVTXTSW where I want to >suspend execution for 90 seconds Given that, you do not need to do what you are asking for. The parameter for the cross-memory TCB or SRB wait routine is an 8-byte area that contains the "wait time". By "wait time" it means "how lo

Re: Adding 90 seconds to 8 byte TOD FIELD

2018-12-25 Thread Joseph Reichman
Thanks I have it in a macro and will post the code .WAIT ANOP L R15,16 GET CVT ADDRESS L R15,X'8C'(R15) GET ECVT ADDRESS L R15,X'384'(R15)

Re: Adding 90 seconds to 8 byte TOD FIELD

2018-12-25 Thread Paul Gilmartin
On Tue, 25 Dec 2018 12:09:10 -0500, Joseph Reichman wrote: >Thanks > >I have it in a macro and will post the code >.WAIT ANOP > L R15,16 GET CVT ADDRESS > L R15,X'8C'(R15) GET ECVT ADDRESS > L R15,X'384'(R15) GET

Happy holidays

2018-12-25 Thread scott Ford
Happy holidays to all my friends and colleagues here on the listserv. Scott Ford IDMWORKS -- Scott Ford IDMWORKS z/OS Development -- For IBM-MAIN subscribe / signoff / archive access instructions, send email to lists...@listserv

Re: Adding 90 seconds to 8 byte TOD FIELD

2018-12-25 Thread Ed Jaffe
On 12/25/2018 9:09 AM, Joseph Reichman wrote: I have it in a macro and will post the code DCX'2328' 90 SECOND WAIT LM15,2,SAVER What you have is DEAD WRONG! When you let the assembler do the work, it comes up with the following: 0055D4A80

Re: Adding 90 seconds to 8 byte TOD FIELD

2018-12-25 Thread Joseph Reichman
Thanks I must of done something else wrong as the code doesn't seem to come out of its wait -Original Message- From: IBM Mainframe Discussion List On Behalf Of Ed Jaffe Sent: Tuesday, December 25, 2018 6:17 PM To: IBM-MAIN@LISTSERV.UA.EDU Subject: Re: Adding 90 seconds to 8 byte TOD