Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

CICS Load Module Size

Status
Not open for further replies.

envymurali

Programmer
Sep 16, 2002
4
US
I know that with CICS TS 1.3, there is a 16MB limit on the size of the load module. Is this limitation still there with CICS TS 2.2 also?

Thanks,
Murali
 
The load module resulting from any application program can occupy up to two gigabytes of main storage. Clearly, there is an extra cost associated with loading and initializing very large load modules, and CICS dynamic storage limits (EDSA) would need to be set correspondingly high. You should, if possible, avoid the use of large load modules. However large applications written in an object-oriented language, such as C++, can easily exceed 16M in size. Experience with C++ classes bound into a single DLL is that performance of the classes is degraded if the single DLL is reorganized into two or more DLLs. This is due to the processing required to resolve function references between multiple DLLs.

Regards ..
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top