80A

Explanation

An error occurred when the system tried to process an R form of the GETMAIN or FREEMAIN macro. A reason code in the SDWACRC field of the system diagnostic work area (SDWA) explains the error:
Code
Explanation
04
There is not enough virtual system queue area (SQA) storage available to satisfy the request.
08
There is not enough virtual common service area (CSA) storage available to satisfy the request.
0C
There is not enough virtual local system queue area (LSQA) storage available to satisfy the request.
10
There is not enough virtual private area storage available to satisfy the request.
Note: This error can occur if an installation exit is requesting virtual storage from a V=R region before the system completely initializes the region.
1C
During request processing, the system tried to get LSQA virtual storage for VSM's cell pool. There was not enough LSQA virtual storage available.
20
There is not enough virtual storage in LSQA to build a new address queue anchor table (AQAT) stack.

System action

The system issues message IEA705I. The system abnormally ends the current task.

Programmer response

A complete dump is necessary to diagnose this out of storage condition. If no dump was produced, SLIPs should be set to obtain a dump on problem recurrence. An abend 878 can cause this same condition, so both SLIPs should be set as follows:
  SLIP SET,COMP=80A,A=SVCD,SDATA=(ALLNUC,
   PSA,SQA,CSA,LPA,TRT,LSQA,RGN),END

  SLIP SET,COMP=878,A=SVCD,SDATA=(ALLNUC,
   PSA,SQA,CSA,LPA,TRT,LSQA,RGN),END
Also, check for program errors that incorrectly modify the macro expansion. Correct them. If necessary, change the program to request less virtual storage. Further debugging information may be found in Informational APAR II05506.

Source

Virtual storage management (VSM)