Re: STIMER(M) EXIT= question

2010-10-16 Thread Peter Relson
Or even just set TCBNOIRB.within TCBFLGS8 Is that GUPI??? Yes. TCBFLGS8 is listed as a programming interface. Peter Relson z/OS Core Technology Design -- For IBM-MAIN subscribe / signoff / archive access instructions, send

Re: STIMER(M) EXIT= question

2010-10-15 Thread Peter Relson
If a system routine does not wish to be interrupted by an IRB it can take a lock or ENQ SMC or STATUS SET,MC,PROCESS Or even just set TCBNOIRB.within TCBFLGS8 Peter Relson z/OS Core Technology Design -- For IBM-MAIN subscribe

Re: STIMER(M) EXIT= question

2010-10-15 Thread McKown, John
-Original Message- From: IBM Mainframe Discussion List [mailto:ibm-m...@bama.ua.edu] On Behalf Of Peter Relson Sent: Friday, October 15, 2010 6:30 AM To: IBM-MAIN@bama.ua.edu Subject: Re: STIMER(M) EXIT= question If a system routine does not wish to be interrupted by an IRB

STIMER(M) EXIT= question

2010-10-14 Thread Paul Schuster
Hello: Suppose you code something like this: STIMER(M) SET BINTVL=1 second, EXIT=exitaddress,WAIT=NO So the application program continues to run, and then 1 second later the timer interrupt happens. The ASM MACROS documentation says the exitaddress routine will get control at some point after

Re: STIMER(M) EXIT= question

2010-10-14 Thread Tom Harper
Sent: Thursday, October 14, 2010 1:05 PM To: IBM-MAIN@bama.ua.edu Subject: STIMER(M) EXIT= question Hello: Suppose you code something like this: STIMER(M) SET BINTVL=1 second, EXIT=exitaddress,WAIT=NO So the application program continues to run, and then 1 second later the timer interrupt

Re: STIMER(M) EXIT= question

2010-10-14 Thread Binyamin Dissen
On Thu, 14 Oct 2010 13:04:53 -0500 Paul Schuster pgs4ibmm...@pacbell.net wrote: :Suppose you code something like this: :STIMER(M) SET BINTVL=1 second, EXIT=exitaddress,WAIT=NO :So the application program continues to run, and then 1 second later the :timer interrupt happens. The ASM MACROS