Search the load list looking for a hit on name load entry address? -----Original Message----- From: IBM Mainframe Assembler List [mailto:ASSEMBLER-LIST@LISTSERV.UGA.EDU] On Behalf Of sudershan ravi Sent: Tuesday, November 14, 2017 09:32 To: ASSEMBLER-LIST@LISTSERV.UGA.EDU Subject: Re: Load module
Hi David, Yes. My question was "In a called module, how do we determine if it was called dynamically or statically" On Tue, Nov 14, 2017 at 6:15 PM, David Staudacher <dlstaudac...@gmail.com> wrote: > "...static or dynamic linked modules within a program". > > Ouch! This will only add to the confusion (a "dynamic linked module" > is never within a [calling] program). ;-) > > As also will this COBOL (off topic for this Listserv) example: > > CALL 'WS-PROG1' USING XXX,YYYY as DYNAMIC > > ... which (1) has invalid syntax for an IBM COBOL call, (2) has an > invalid module name for IBM COBOL and (3) even if it were valid would > only work as a dynamic call if the DYNAM compiler option were in > effect. If the author was talking about IBM COBOL, he probably meant > to say: CALL WS-PROG1 USING XXX,YYYY > > If the question is "In a called module, how do we determine if it was > called dynamicall or statically?", now that would be very interesting! > ;-) >