Diff for /libaitrpc/src/builtin.c between versions 1.1.1.1.2.1 and 1.1.1.1.2.2

version 1.1.1.1.2.1, 2010/06/18 13:36:01 version 1.1.1.1.2.2, 2010/06/23 11:33:38
Line 108  rpcServerShutdown(rpc_srv_t * __restrict srv, rpc_func Line 108  rpcServerShutdown(rpc_srv_t * __restrict srv, rpc_func
 {  {
         RPC_CALLBACK_CHECK_INPUT(srv, call);          RPC_CALLBACK_CHECK_INPUT(srv, call);
   
        pthread_mutex_lock(&rpc_mtx);        pthread_mutex_lock(&srv->srv_mtx);
         rpc_Kill = 1;          rpc_Kill = 1;
        pthread_mutex_unlock(&rpc_mtx);        pthread_mutex_unlock(&srv->srv_mtx);
   
         return 0;          return 0;
 }  }

Removed from v.1.1.1.1.2.1  
changed lines
  Added in v.1.1.1.1.2.2


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