Skip to content

Commit

Permalink
Fix build issues
Browse files Browse the repository at this point in the history
  • Loading branch information
vyasr committed Jul 28, 2023
1 parent 48c1c47 commit 373e97a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ucp/_libs/ucx_worker.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ cdef _drain_worker_tag_recv(ucp_worker_h handle):

buf = malloc(info.length)
status = ucp_tag_msg_recv_nb(
handle, buf, info.length, ucp_dt_make_contig(1), message, _tag_recv_callback
handle, buf, info.length, ucp_dt_make_contig(1), message, _tag_recv_cb
)

try:
Expand Down Expand Up @@ -130,7 +130,7 @@ cdef class UCXWorker(UCXObject):
UCP_AM_HANDLER_PARAM_FIELD_ARG
)
am_handler_param.id = AM_MSG_ID
am_handler_param.cb = _am_recv_callback
am_handler_param.cb = <ucp_am_recv_callback_t>_am_recv_callback
am_handler_param.arg = <void *>self
status = ucp_worker_set_am_recv_handler(self._handle, &am_handler_param)

Expand Down

0 comments on commit 373e97a

Please sign in to comment.