Re: TCB Address

2009-09-16 Thread William Janulin
Looks like a dance around the real answer -Original Message- From: IBM Mainframe Discussion List [mailto:ibm-m...@bama.ua.edu] On Behalf Of Patrick O'Keefe Sent: Tuesday, September 15, 2009 5:30 PM To: IBM-MAIN@bama.ua.edu Subject: Re: TCB Address On Tue, 15 Sep 2009 15:05:15 -0500

Re: TCB Address

2009-09-16 Thread Rick Fochtman
Edward Jaffe wrote: Patrick O'Keefe wrote: RTFM (where m can stand for either manual or macro). And, what does F stand for? ;-) FINE -- For IBM-MAIN subscribe / signoff /

Re: TCB Address

2009-09-15 Thread Schwarz, Barry A
Subject: TCB Address Hello all. I'm asking about how to obtain current TCB address in an assembly pgm. Any help will be appreciated; thanks in advance. -- For IBM-MAIN subscribe / signoff / archive access instructions, send email

Re: TCB Address

2009-09-15 Thread David Andrews
On Tue, 2009-09-15 at 14:55 -0400, Schwarz, Barry A wrote: if your real intent is to obtain data from the TCB, such as the TIOT address, consider looking at the EXTRACT macro/service. Why? PSA-TCB-TIOT is GUPI. -- David Andrews A. Duda and Sons, Inc. david.andr...@duda.com

Re: TCB Address

2009-09-15 Thread Patrick O'Keefe
On Mon, 14 Sep 2009 19:09:29 -0300, Digestani, Raul rdigest...@santanderrio.com.ar wrote: I'm asking about how to obtain current TCB address in an assembly pgm. Others have given helpful answers. I'll give the curmudgeonly answer. RTFM (where m can stand for either manual or macro

Re: TCB Address

2009-09-15 Thread Edward Jaffe
Patrick O'Keefe wrote: RTFM (where m can stand for either manual or macro). And, what does F stand for? ;-) -- Edward E Jaffe Phoenix Software International, Inc 5200 W Century Blvd, Suite 800 Los Angeles, CA 90045 310-338-0400 x318 edja...@phoenixsoftware.com

Re: TCB Address

2009-09-15 Thread Ted MacNEIL
And, what does F stand for? ;-) Fine? Funny? - Too busy driving to stop for gas! -- For IBM-MAIN subscribe / signoff / archive access instructions, send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO Search

Re: TCB Address

2009-09-15 Thread McKown, John
-Original Message- From: IBM Mainframe Discussion List [mailto:ibm-m...@bama.ua.edu] On Behalf Of David Andrews Sent: Tuesday, September 15, 2009 2:16 PM To: IBM-MAIN@bama.ua.edu Subject: Re: TCB Address On Tue, 2009-09-15 at 14:55 -0400, Schwarz, Barry A wrote: if your real

Re: TCB Address

2009-09-15 Thread Diehl, Gary
Factual ?? Gary Diehl Systems Administration Water seeks it's own level - Aristotle -Original Message- From: IBM Mainframe Discussion List [mailto:ibm-m...@bama.ua.edu] On Behalf Of Edward Jaffe Sent: Tuesday, September 15, 2009 2:38 PM To: IBM-MAIN@bama.ua.edu Subject: Re: TCB Address

Re: TCB Address

2009-09-15 Thread Patrick O'Keefe
On Tue, 15 Sep 2009 15:05:15 -0500, Diehl, Gary gary.di...@allstate.com wrote: Factual ?? Even though I'm one (of many, I'm sure) that started the Fine usage, in this case I'm sure it stands for Fascinating. Or perhaps Fun-filled. Pat O'Keefe

TCB Address

2009-09-14 Thread Digestani, Raul
Hello all. I'm asking about how to obtain current TCB address in an assembly pgm. Any help will be appreciated; thanks in advance. __ Raúl Daniel Digestani Bco. Santander Río S.A. CC 011 - Desarrollo de Sistemas II Gral. Hornos 238 - Piso 3 - Buenos Aires

Re: TCB Address

2009-09-14 Thread Chuck Arney
Mainframe Discussion List [mailto:ibm-m...@bama.ua.edu] On Behalf Of Digestani, Raul Sent: Monday, September 14, 2009 5:09 PM To: IBM-MAIN@bama.ua.edu Subject: TCB Address Hello all. I'm asking about how to obtain current TCB address in an assembly pgm. Any help will be appreciated; thanks

Re: TCB Address

2009-09-14 Thread William H. Blair
how to obtain current TCB address in an assembly pgm. USING PSA,0 PSA addressability L R3,PSATOLD - Current TCB USING TCB,R3 TCB addressability ... IHAPSA LIST=NOPSA DSECT IKJTCB LIST

Re: Find TCB address from SRB

2008-12-18 Thread Peter Relson
To summarize: -- The system keeps no information about which task/TCB scheduled an SRB (if indeed the scheduling was even done by a task). -- Individual schedulers of SRBs can pass whatever information they want (such as a TCB address) via parameter to the target SRB routine -- the PTCBADDR

Re: Find TCB address from SRB

2008-12-17 Thread Wayne Driscoll
Mainframe Discussion List IBM-MAIN@bama.ua.edu To IBM-MAIN@bama.ua.edu cc Subject Re: Find TCB address from SRB Hi I pass actually, but as I need the TCB address, I'm in a deep call chain, it would be simple to use something like PSATOLD . Rob Scott wrote: Miklos, Why not just pass

Re: Find TCB address from SRB

2008-12-17 Thread Edward Jaffe
Miklos Szigetvari wrote: Try to find out the schedule TCB address in the middle of an SRB started via IEAMSCHD. I would need something like the PSATOLD I don't believe the scheduling TCB is available anywhere. You can find the TCB address to which errors are to be percolated. But, that's

Re: Find TCB address from SRB

2008-12-17 Thread Miklos Szigetvari
Hi Thank you. I will pass the TCB address. Rob Scott wrote: What is preventing you from passing the TCB address (from the SRB parameter list) onwards to the program that you are calling ? Rob Scott Rocket Software, Inc 275 Grove Street Newton, MA 02466 617-614-2305 rsc...@rs.com

Re: Find TCB address from SRB

2008-12-17 Thread Miklos Szigetvari
Hi I pass actually, but as I need the TCB address, I'm in a deep call chain, it would be simple to use something like PSATOLD . Rob Scott wrote: Miklos, Why not just pass the TCB address as part of the parameters you pass to the SRB ? Rob Scott Rocket Software, Inc 275 Grove Street

Find TCB address from SRB

2008-12-17 Thread Miklos Szigetvari
Hi Try to find out the schedule TCB address in the middle of an SRB started via IEAMSCHD. I would need something like the PSATOLD -- Miklos Szigetvari Development Team ISIS Information Systems Gmbh tel: (+43) 2236 27551 570 Fax: (+43) 2236 21081 E-mail: miklos.szigetv...@isis-papyrus.com

Re: Find TCB address from SRB

2008-12-17 Thread Wayne Driscoll
respond to IBM Mainframe Discussion List IBM-MAIN@bama.ua.edu To IBM-MAIN@bama.ua.edu cc Subject Re: Find TCB address from SRB Wayne, Well, for one thing, you don't have addressability to the SRB. I've been watching this thread for a while. I would set the purge TCB and then locate it using

Re: Find TCB address from SRB

2008-12-17 Thread Rob Scott
List [mailto:ibm-m...@bama.ua.edu] On Behalf Of Miklos Szigetvari Sent: 17 December 2008 14:11 To: IBM-MAIN@bama.ua.edu Subject: Re: Find TCB address from SRB Hi I pass actually, but as I need the TCB address, I'm in a deep call chain, it would be simple to use something like PSATOLD . Rob

Re: Find TCB address from SRB

2008-12-17 Thread Miklos Szigetvari
...@rs.com -Original Message- From: IBM Mainframe Discussion List [mailto:ibm-m...@bama.ua.edu] On Behalf Of Miklos Szigetvari Sent: 17 December 2008 14:11 To: IBM-MAIN@bama.ua.edu Subject: Re: Find TCB address from SRB Hi I pass actually, but as I need the TCB address, I'm in a deep

Re: Find TCB address from SRB

2008-12-17 Thread Rob Scott
What is preventing you from passing the TCB address (from the SRB parameter list) onwards to the program that you are calling ? Rob Scott Rocket Software, Inc 275 Grove Street Newton, MA 02466 617-614-2305 rsc...@rs.com -Original Message- From: IBM Mainframe Discussion List

Re: Find TCB address from SRB

2008-12-17 Thread Rob Scott
Miklos, Why not just pass the TCB address as part of the parameters you pass to the SRB ? Rob Scott Rocket Software, Inc 275 Grove Street Newton, MA 02466 617-614-2305 rsc...@rs.com -Original Message- From: IBM Mainframe Discussion List [mailto:ibm-m...@bama.ua.edu] On Behalf

Re: Find TCB address from SRB

2008-12-17 Thread (IBM Mainframe Discussion List)
In a message dated 12/17/2008 12:30:45 P.M. Central Standard Time, edja...@phoenixsoftware.com writes: What if you were scheduled by another SRB? A global SRB can also be scheduled during the processing of an I/O interrupt, in which case there could be neither a current TCB nor a current

Re: Find TCB address from SRB

2008-12-17 Thread Tom Harper
@bama.ua.edu IBM-MAIN@bama.ua.edu Sent: Wed Dec 17 10:52:57 2008 Subject: Re: Find TCB address from SRB PSATOLD points to the currently dispatched TCB. Since a TCB is not dispatched, the value is zero (by definition). What is so hard about USING PSA,0 L R7,PSATOLD STR7

Re: Find TCB address from SRB

2008-12-17 Thread Edward Jaffe
(IBM Mainframe Discussion List) wrote: In a message dated 12/17/2008 12:30:45 P.M. Central Standard Time, edja...@phoenixsoftware.com writes: What if you were scheduled by another SRB? A global SRB can also be scheduled during the processing of an I/O interrupt, in which case

Re: Find TCB address from SRB

2008-12-17 Thread Shane
On Wed, 2008-12-17 at 13:28 -0800, Edward Jaffe wrote: Or you could be scheduled by a timer DIE routine. If it dies who cares ... :0) Enuff of this levity - have a good Christmas fella. Shane... -- For IBM-MAIN subscribe /