rpc_ss_set_client_alloc_free(3rpc)Sets the memory allocation and freeing mechanism used by the client stubs, thereby overriding the default routines the client stub uses to manage memory for pointed-to nodes Used by client applications. Synopsis #include <dce/rpc.h> void rpc_ss_set_client_alloc_free( idl_void_p_t (*p_allocate)( idl_size_t size), void (*p_free)( idl_void_p_t *ptr) ); Parameters Input
p_allocate
p_free Note that in ANSI standard C environments, idl_void_p_t is defined as void * and in other environments is defined as char *.
Description For information about rules for using memory management routines, see the OSF DCE Application Development Guide - Core Components.
Return Values Errors A representative list of errors that might be returned is not shown here. Refer to the OSF DCE Problem Determination Guide for complete descriptions of all error messages.
Related Information Books: OSF DCE Application Development Guide - Core Components
|