Diff for /libaitrpc/inc/aitrpc.h between versions 1.28.8.1 and 1.28.8.2

version 1.28.8.1, 2024/02/26 18:25:31 version 1.28.8.2, 2024/03/20 17:06:10
Line 48  SUCH DAMAGE. Line 48  SUCH DAMAGE.
   
   
 #include <assert.h>  #include <assert.h>
 //#include <stdlib.h>  
 //#include <string.h>  
 //#include <errno.h>  
 //#include <sys/types.h>  
 //#include <sys/param.h>  
 //#if !defined(__NetBSD__)  
 //#include <sys/limits.h>  
 //#endif  
 //#include <sys/socket.h>  
 #include <pthread.h>  #include <pthread.h>
 #include <sys/queue.h>  #include <sys/queue.h>
 #include <aitrpc_pkt.h>  #include <aitrpc_pkt.h>
Line 153  typedef int (*rpc_callback_t)(rpc_cli_t *, struct tagR Line 144  typedef int (*rpc_callback_t)(rpc_cli_t *, struct tagR
 #define RPC_CALL_ARGS(arg1, arg2, arg3) rpc_cli_t* arg1, struct tagRPCCall* arg2, array_t* arg3  #define RPC_CALL_ARGS(arg1, arg2, arg3) rpc_cli_t* arg1, struct tagRPCCall* arg2, array_t* arg3
 #define RPC_CALL_STDARGS        RPC_CALL_ARGS(cli, rpc, iv)  #define RPC_CALL_STDARGS        RPC_CALL_ARGS(cli, rpc, iv)
   
   
   /*
    * rpc_srv_DispatchSignal() - Enable/Disable Signal dispatcher for RPC scheduler
    *
    * @x = RPC server instance
    * @y = Enable or =0 Disable
    * return: 0 enabled signal dispatcher. See schedSignalDispatch() in libaitsched
    */
   #define rpc_srv_DispatchSignal(x, y)    schedSignalDispatch((x)->srv_root, (y))
   
 /* ----------------------------------------------------------------------- */  /* ----------------------------------------------------------------------- */
   

Removed from v.1.28.8.1  
changed lines
  Added in v.1.28.8.2


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>