CCITCP / CCITCPGW / CCISSL / CCISSLGW may start to receive CAS9899E - Error: pthread_create, errno = 112.
CCITCP / CCITCPGW / CCISSL / CCISSLGW were written in "C", and use the LE runtime environment. It is a 31 bit application. If ALL31(ON) is not set, the volume of activity could result in a storage shortage. The STACK option can also be used to control the allocation of the thread's stack storage.
The storage shortage can manifest itself as pthread_create failures or abends.
Please adjust the CCITCP / CCITCPGW / CCISSL / CCISSLGW procs, adding the following additional DD statement. This will allow the task to allocate LE storage above the 16M line:
//CEEOPTS DD * ALL31(ON)
The STACK option has also been found to be helpful when many threads are involved. This option controls the allocation of the thread's stack storage for both the upward and downward- growing stacks. An example using the STACK option is below:
//CEEOPTS DD * ALL31(ON) STACK(131072,131072,ANY,KEEP,524288,131072)
Information on Language Environment runtime options is available at the following link:
https://www.ibm.com/support/knowledgecenter/en/SSLTBW_2.3.0/com.ibm.zos.v2r3.ceea300/ceea30010.htm