CEE3571S
Storage for writeable static was not available for DLL dll-name.

Explanation

Not enough storage was available for allocation of writeable static for DLL dll-name.

System action

The request is ignored. The load module is deleted from storage.

If this was a C dllload() or dlopen() request and the _EDC_DLL_DIAG environment variable was not set to QUIET, the error message was sent to the Language Environment® message file. Other DLL diagnostic options, such as issuing ctrace(), signaling a condition, and turning off _EDC_DLL_DIAG diagnostics, were available through the _EDC_DLL_DIAG environment variable.

If this was an explicit C dlopen() request, this error could also be returned to the caller through a subsequent call to the C dlerror() function.

A CEEDLLF DLL failure control block was populated with further DLL error diagnostics.

Programmer response

Ensure that the REGION size is sufficient to run the application. Verify that the storage sizes specified in the HEAP and STACK run-time options are reasonable, given the region size allocated to the application. Verify that you are using storage options that get your storage from above the line, if you can, since you can run out of storage below the line much more easily.

Symbolic Feedback Code

CEE3FJ