Re: TRACE table from program or from SYSMDUMP ?

2008-10-15 Thread Miklos Szigetvari

Hi

Thank you again.
I found the BLSXSUMT  exec is doing  more or less the same I would like 
to achive.

It is a super exec, shame on me, never used.
It is also reading in the SYSTRACE output (so no direct access to the 
trace table)


Jim Mulder wrote:

IBM Mainframe Discussion List IBM-MAIN@BAMA.UA.EDU wrote on 10/14/2008 
03:03:58 AM:



 


Why I'm asking this
You see maybe see the SVCDUMP anal JAVA tool, among other nice features 
it has, I like the possibility to find out

from the trace table entry,  the C/C++ function name.
I would like to make a verbexit with the similar functionality, but I 
would need

to read/access  the trace table from a verbexit.
   




 For SVCDUMP and SYSMDUMP, PRDTTCH (note: this field is classified
as Not a programming interface) contains the address of the 
dumped trace snapshot, which is virtualized in the TRACE address space. 

BROWSESYS1.MODGEN(IHAPRD) 
Command === 
PRDTTCH  DS0F   POINTER TO TRACE TABLE CONTROL HDR 
*  @LCC


 The mapping of the snapshot (TTCH) is also not a programming interface,
and the mapping is not provided in the MVS Data Areas manual.

Jim Mulder   z/OS System Test   IBM Corp.  Poughkeepsie,  NY

--
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


 



--
Miklos Szigetvari

Development Team
ISIS Information Systems Gmbh 
tel: (+43) 2236 27551 570
Fax: (+43) 2236 21081 

E-mail: [EMAIL PROTECTED] 

Info: [EMAIL PROTECTED] 
Hotline: +43-2236-27551-111 

Visit our Website: http://www.isis-papyrus.com 
---

This e-mail is only intended for the recipient and not legally
binding. Unauthorised use, publication, reproduction or
disclosure of the content of this e-mail is not permitted.
This email has been checked for known viruses, but ISIS accepts
no responsibility for malicious or inappropriate content.
--- 


--
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



Re: TRACE table from program or from SYSMDUMP ?

2008-10-14 Thread Miklos Szigetvari

Hi Jim

Thank you for your answer.

Why I'm asking this
You see maybe see the SVCDUMP anal JAVA tool, among other nice features 
it has, I like the possibility to find out

from the trace table entry,  the C/C++ function name.
I would like to make a verbexit with the similar functionality, but I 
would need

to read/access  the trace table from a verbexit.

Jim Mulder wrote:

IBM Mainframe Discussion List IBM-MAIN@BAMA.UA.EDU wrote on 10/13/2008 
06:22:38 AM:


 


Hi

Some tricks to process the system trace table from a program ?
(psatbvtv-tbvtbufv-tte ...)
If I look the SYSMDUMP , this chain brings to nowhere.
   



 TBVTs and trace buffers are virtualized in private storage in the 
TRACE address space.  This storage would not be included in a 
SYSMDUMP.  As of z/OS 1.10, the trace buffers are in 64-bit

virtual storage.

Jim Mulder   z/OS System Test   IBM Corp.  Poughkeepsie,  NY

--
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


 



--
Miklos Szigetvari

Development Team
ISIS Information Systems Gmbh 
tel: (+43) 2236 27551 570
Fax: (+43) 2236 21081 

E-mail: [EMAIL PROTECTED] 

Info: [EMAIL PROTECTED] 
Hotline: +43-2236-27551-111 

Visit our Website: http://www.isis-papyrus.com 
---

This e-mail is only intended for the recipient and not legally
binding. Unauthorised use, publication, reproduction or
disclosure of the content of this e-mail is not permitted.
This email has been checked for known viruses, but ISIS accepts
no responsibility for malicious or inappropriate content.
--- 


--
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



Re: TRACE table from program or from SYSMDUMP ?

2008-10-14 Thread Jim Mulder
IBM Mainframe Discussion List IBM-MAIN@BAMA.UA.EDU wrote on 10/14/2008 
03:03:58 AM:


 Why I'm asking this
 You see maybe see the SVCDUMP anal JAVA tool, among other nice features 
 it has, I like the possibility to find out
 from the trace table entry,  the C/C++ function name.
  I would like to make a verbexit with the similar functionality, but I 
 would need
 to read/access  the trace table from a verbexit.


  For SVCDUMP and SYSMDUMP, PRDTTCH (note: this field is classified
as Not a programming interface) contains the address of the 
dumped trace snapshot, which is virtualized in the TRACE address space. 

 BROWSESYS1.MODGEN(IHAPRD) 
 Command === 
PRDTTCH  DS0F   POINTER TO TRACE TABLE CONTROL HDR 
*  @LCC

  The mapping of the snapshot (TTCH) is also not a programming interface,
and the mapping is not provided in the MVS Data Areas manual.

Jim Mulder   z/OS System Test   IBM Corp.  Poughkeepsie,  NY

--
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



TRACE table from program or from SYSMDUMP ?

2008-10-13 Thread Miklos Szigetvari

Hi

Some tricks to process the system trace table from a program ?
(psatbvtv-tbvtbufv-tte ...)
If I look the SYSMDUMP , this chain brings to nowhere.

--
Miklos Szigetvari

Development Team
ISIS Information Systems Gmbh 
tel: (+43) 2236 27551 570
Fax: (+43) 2236 21081 

E-mail: [EMAIL PROTECTED] 

Info: [EMAIL PROTECTED] 
Hotline: +43-2236-27551-111 

Visit our Website: http://www.isis-papyrus.com 
---

This e-mail is only intended for the recipient and not legally
binding. Unauthorised use, publication, reproduction or
disclosure of the content of this e-mail is not permitted.
This email has been checked for known viruses, but ISIS accepts
no responsibility for malicious or inappropriate content.
--- 


--
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



Re: TRACE table from program or from SYSMDUMP ?

2008-10-13 Thread Jim Mulder
IBM Mainframe Discussion List IBM-MAIN@BAMA.UA.EDU wrote on 10/13/2008 
06:22:38 AM:

 Hi
 
 Some tricks to process the system trace table from a program ?
 (psatbvtv-tbvtbufv-tte ...)
 If I look the SYSMDUMP , this chain brings to nowhere.

  TBVTs and trace buffers are virtualized in private storage in the 
TRACE address space.  This storage would not be included in a 
SYSMDUMP.  As of z/OS 1.10, the trace buffers are in 64-bit
virtual storage.
 
Jim Mulder   z/OS System Test   IBM Corp.  Poughkeepsie,  NY

--
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