On Thu, 8 Mar 2012 14:01:03 -0600, Tom Marchant wrote:
>
>In order for this to work correctly, an ENTRY statement
>is needed:
>
>//SYSLMOD  DD  DSN=main.loadlib
>//NEWMOD  DD  DSN=load.library.where.you.put.the.new.module
>//SYSLIN  DD  *
> INCLUDE NEWMOD(BA4C1426)
> INCLUDE SYSLMOD(BA4C1976)
>   ENTRY  BA4C1976
> NAME BA4C1976(R)
> 
Or not.  I've never used it, but an alternative would seem to be:

//SYSLMOD  DD  DSN=main.loadlib
//NEWMOD  DD  DSN=load.library.where.you.put.the.new.module
//SYSLIN  DD  *
 INCLUDE NEWMOD(BA4C1426)
 INCLUDE  -ATTR  SYSLMOD(BA4C1976)               
 NAME BA4C1976(R)

This kills many birds with one stone: AC, AMODE, DC, OL, REUS,
RMODE, SSI, TEST, entry point, DYNAM, and MIGRATABLE. 
I suspect this option was introduced to support invocation of
Binder by IEBCOPY.

I expect a regular contributor to this forum to bristle at such
a lazy shortcut.

-- gil

----------------------------------------------------------------------
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [email protected] with the message: INFO IBM-MAIN

Reply via email to