コード例 #1
0
ファイル: ucp_ep.c プロジェクト: alex--m/ucx
static void ucp_ep_flush_slow_path_remove(ucp_request_t *req)
{
    ucp_ep_h ep = req->send.ep;
    if (req->send.flush.cbq_elem_on) {
        uct_worker_slowpath_progress_unregister(ep->worker->uct,
                                                &req->send.flush.cbq_elem);
        req->send.flush.cbq_elem_on = 0;
    }
}
コード例 #2
0
ファイル: mm_ep.c プロジェクト: brminich/ucx
void uct_mm_ep_remove_slow_path_callback(uct_mm_iface_t *iface, uct_mm_ep_t *ep)
{
    uct_worker_slowpath_progress_unregister(iface->super.worker, &ep->cbq_elem);
    ep->cbq_elem_on = 0;
}