You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
log_error_errno(ID(chan->owner), n, "Failed to send ancillary data on channel %s", chan->spec->id);
r=n;
goto out;
}
break;
}
We should get rid of this loop and make this a part of the resource event loop like it is in_chan_buf_recv. For this, we also need sid_resource_create_io_event_source to accept a new arg - a bit mask of events to watch for as currently it implicitly uses EPOLLIN only.
The text was updated successfully, but these errors were encountered:
The
_chan_buf_send
function which is part of theworker-control
still uses its own loop to send the data:sid/src/resource/worker-control.c
Lines 883 to 896 in 0fecd48
We should get rid of this loop and make this a part of the resource event loop like it is in
_chan_buf_recv
. For this, we also needsid_resource_create_io_event_source
to accept a new arg - a bit mask of events to watch for as currently it implicitly usesEPOLLIN
only.The text was updated successfully, but these errors were encountered: