Diff for /libaitrpc/inc/aitrpc.h between versions 1.1.1.1.2.8 and 1.1.1.1.2.9

version 1.1.1.1.2.8, 2010/06/23 16:44:24 version 1.1.1.1.2.9, 2010/06/23 17:29:07
Line 442  inline void rpc_srv_blobUnmap(rpc_blob_t * __restrict  Line 442  inline void rpc_srv_blobUnmap(rpc_blob_t * __restrict 
  */   */
 inline int rpc_srv_blobFree(rpc_srv_t * __restrict srv, rpc_blob_t * __restrict blob);  inline int rpc_srv_blobFree(rpc_srv_t * __restrict srv, rpc_blob_t * __restrict blob);
   
   /*
    * rpc_srv_sendBLOB() Send mapped BLOB to client
    * @cli = Client instance
    * @blob = Mapped BLOB element
    * return: -1 error, 0 ok
    */
   int rpc_srv_sendBLOB(rpc_cli_t * __restrict cli, rpc_blob_t * __restrict blob);
   /*
    * rpc_srv_recvBLOB() Receive BLOB from client
    * @cli = Client instance
    * return: -1 error, 0 ok
    */
   int rpc_srv_recvBLOB(rpc_cli_t * __restrict cli);
   
   
 /* RPC Client side functions */  /* RPC Client side functions */
   

Removed from v.1.1.1.1.2.8  
changed lines
  Added in v.1.1.1.1.2.9


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