Re: Error Adding CSVLLIX1 using CSVDYNEX with modaddr paramter

2014-01-10 Thread Peter Relson
I am using the LOAD/MODADDR because I would like to get the address to debug it. CSVDYNEX REQUEST=LIST,EXAAVER=1 (or 2) will return in the output area, mapped by EXAAM1, EXXAM2 fields such such Exaam2EpAddr Exaam2LoadPt Exaam2ModLen for the exit routine. DISPLAY PROG,EXIT,EXITNAME=e,DIAG can

Re: Error Adding CSVLLIX1 using CSVDYNEX with modaddr paramter

2014-01-10 Thread Peter Relson
LOAD allows GLOBAL=YES,EOM=NO to put the module in CSA. This seems to be a somewhat scary misunderstanding of the EOM=YES and EOM=NO options of LOAD with GLOBAL=YES. EOM=NO: get rid of the module at task termination of the loading task EOM=YES: get rid of the module at memory termination of the

Error Adding CSVLLIX1 using CSVDYNEX with modaddr paramter

2014-01-09 Thread Peter Relson
If I understand the processing for this exit, the exit routine must be in common storage (e.g., LPA or CSA) if you specify MODADDR on the CSVDYNEX ADD macro. So unless your LOAD is satisfied from LPA I doubt that this will work properly. Walt is correct, with the addition of unless you use

Re: Error Adding CSVLLIX1 using CSVDYNEX with modaddr paramter

2014-01-09 Thread Micheal Butz
I am using the LOAD/MODADDR because I would like to get the address to debug it. Sent from my iPhone On Jan 9, 2014, at 7:51 AM, Peter Relson rel...@us.ibm.com wrote: If I understand the processing for this exit, the exit routine must be in common storage (e.g., LPA or CSA) if you specify

Re: Error Adding CSVLLIX1 using CSVDYNEX with modaddr paramter

2014-01-09 Thread Jon Perryman
LOAD allows GLOBAL=YES,EOM=NO to put the module in CSA. Or you could use MVS commands to add the module to MLPA and activate it as an exit. . Jon Perryman. From: Peter Relson rel...@us.ibm.com If I understand the processing for this exit, the exit routine

Error Adding CSVLLIX1 using CSVDYNEX with modaddr paramter

2014-01-08 Thread MichealButz
Hi, I am getting the following return code when try to add CSVLLIX1 with the moaddr parameter of CSVDYNEX The AMODE of the program is correct = 31 As The high order bit of the address is one With the dsname parameter I get a RC of 0 R15 = 8 , R0 = 827 Below is my code

Re: Error Adding CSVLLIX1 using CSVDYNEX with modaddr paramter

2014-01-08 Thread Rob Scott
Subject: Error Adding CSVLLIX1 using CSVDYNEX with modaddr paramter Hi, I am getting the following return code when try to add CSVLLIX1 with the moaddr parameter of CSVDYNEX The AMODE of the program is correct = 31 As The high order bit of the address is one With the dsname parameter I get

Re: Error Adding CSVLLIX1 using CSVDYNEX with modaddr paramter

2014-01-08 Thread Micheal Butz
Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On Behalf Of MichealButz Sent: 08 January 2014 16:46 To: IBM-MAIN@LISTSERV.UA.EDU Subject: Error Adding CSVLLIX1 using CSVDYNEX with modaddr paramter Hi, I am getting the following return code when try to add CSVLLIX1 with the moaddr

Re: Error Adding CSVLLIX1 using CSVDYNEX with modaddr paramter

2014-01-08 Thread Clifford McNeill
: Re: Error Adding CSVLLIX1 using CSVDYNEX with modaddr paramter To: IBM-MAIN@LISTSERV.UA.EDU From the CSVDYNEX doc : MODADDR specifies a fullword (or a register containing the address of a fullword) that contains the address of the exit routine to be added. I suggest you code MODADDR

Re: Error Adding CSVLLIX1 using CSVDYNEX with modaddr paramter

2014-01-08 Thread Rob Scott
and it says a AMODE=31 exit routine is being added to an exit that requires its routines to be AMODE=24. Cliff McNeill Date: Wed, 8 Jan 2014 17:08:08 + From: rsc...@rocketsoftware.com Subject: Re: Error Adding CSVLLIX1 using CSVDYNEX with modaddr paramter To: IBM-MAIN@LISTSERV.UA.EDU

Re: Error Adding CSVLLIX1 using CSVDYNEX with modaddr paramter

2014-01-08 Thread Clifford McNeill
@LISTSERV.UA.EDU] On Behalf Of MichealButz Sent: 08 January 2014 16:46 To: IBM-MAIN@LISTSERV.UA.EDU Subject: Error Adding CSVLLIX1 using CSVDYNEX with modaddr paramter Hi, I am getting the following return code when try to add CSVLLIX1 with the moaddr parameter of CSVDYNEX

Re: Error Adding CSVLLIX1 using CSVDYNEX with modaddr paramter

2014-01-08 Thread Walt Farrell
On Wed, 8 Jan 2014 11:45:58 -0500, MichealButz michealb...@optonline.net wrote: I am getting the following return code when try to add CSVLLIX1 with the moaddr parameter of CSVDYNEX The AMODE of the program is correct = 31 As The high order bit of the address is one With the dsname parameter