aboutsummaryrefslogtreecommitdiff
path: root/src/sp/protocol/bus0/bus.c
diff options
context:
space:
mode:
authorGarrett D'Amore <garrett@damore.org>2024-12-26 16:41:13 -0800
committerGarrett D'Amore <garrett@damore.org>2024-12-26 18:21:22 -0800
commiteaa1b679271b4d07507b8ba4a80ee7bc0448da67 (patch)
tree881b8c876ca891ccef450685833e4ad877cd9569 /src/sp/protocol/bus0/bus.c
parent458b414401d897d905f5313ec80594d8b8b95a48 (diff)
downloadnng-eaa1b679271b4d07507b8ba4a80ee7bc0448da67.tar.gz
nng-eaa1b679271b4d07507b8ba4a80ee7bc0448da67.tar.bz2
nng-eaa1b679271b4d07507b8ba4a80ee7bc0448da67.zip
bus: use nni_aio_start
The test needed a change to ensure that we do not trigger a debugging check (you cannot submit another job on an aio that you've been notified is stopped via NNG_ESTOPPED.)
Diffstat (limited to 'src/sp/protocol/bus0/bus.c')
-rw-r--r--src/sp/protocol/bus0/bus.c21
1 files changed, 10 insertions, 11 deletions
diff --git a/src/sp/protocol/bus0/bus.c b/src/sp/protocol/bus0/bus.c
index 5c7249dd..4822ffd6 100644
--- a/src/sp/protocol/bus0/bus.c
+++ b/src/sp/protocol/bus0/bus.c
@@ -269,14 +269,13 @@ bus0_sock_send(void *arg, nni_aio *aio)
uint32_t sender = 0;
size_t len;
- if (nni_aio_begin(aio) != 0) {
- return;
- }
-
msg = nni_aio_get_msg(aio);
len = nni_msg_len(msg);
nni_aio_set_msg(aio, NULL);
+ // this test is so that we detect when the aio itself is terminated,
+ // otherwise we could loop forever.
+
if (s->raw) {
// In raw mode, we look for the message header, to see if it
// is being resent from another pipe (e.g. via a device).
@@ -290,6 +289,12 @@ bus0_sock_send(void *arg, nni_aio *aio)
}
nni_mtx_lock(&s->mtx);
+
+ if (!nni_aio_start(aio, NULL, NULL)) {
+ nni_mtx_unlock(&s->mtx);
+ return;
+ }
+
NNI_LIST_FOREACH (&s->pipes, pipe) {
if (s->raw && nni_pipe_id(pipe->pipe) == sender) {
@@ -331,17 +336,11 @@ bus0_sock_recv(void *arg, nni_aio *aio)
bus0_sock *s = arg;
nni_msg *msg;
- if (nni_aio_begin(aio) != 0) {
- return;
- }
-
nni_mtx_lock(&s->mtx);
again:
if (nni_lmq_empty(&s->recv_msgs)) {
- int rv;
- if ((rv = nni_aio_schedule(aio, bus0_recv_cancel, s)) != 0) {
+ if (!nni_aio_start(aio, bus0_recv_cancel, s)) {
nni_mtx_unlock(&s->mtx);
- nni_aio_finish_error(aio, rv);
return;
}
nni_list_append(&s->recv_wait, aio);