| 
 | 
  | 
 
  
  Deletes a name associated with a call socket descriptor.
  Syntax
  
 IPCNAMERASE  ( socketname, nlen, result )
   
  Parameters
  
    - socketname (input)
 
      
    - Character array, by reference. The socket name, bound to a socket,
        which is to be removed.
 
      
    - nlen (input)
 
      
    - 32-bit integer, by value. The length in bytes of the specified
        socket name. Maximum is 16.
 
      
    - result (output)
 
      
    - 32-bit integer, by reference. The error code returned; zero if no
        error.
 
   
  Description
  If a socket has been named with the IPCNAME intrinsic, the owner of
  the socket may remove the name by means of the IPCNAMERASE intrinsic.
  The owner is the process which created the socket or, if the socket has been
  given away, the process which has acquired it.
  
  All the parameters are required. Condition codes returned by this intrinsic
  are:
  
    - CCE — Succeeded.
 
      
    - CCL — Failed.
 
      
    - CCG — Not returned by this intrinsic.
 
   
  This intrinsic cannot be called in split stack mode.
  
 
 |