CEE3594I
External symbol symbol-name was not found as a result of a search of the global symbol object.

Explanation

An attempt was made to locate an external symbol in the global symbol object, but symbol-name was not found in the export section of any of the "non-LOCAL" DLLs currently loaded.

System action

If this was a C dlsym() 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 a C dlsym() 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

The request is ignored. Ensure that the symbol name specified on the C dlsym() request is correct, and that the DLL that is expected to contain the symbol was opened at least once with the RTLD_GLOBAL flag.

Symbolic Feedback Code

CEE3GA