Skip to content
Snippets Groups Projects
Commit f3be8499 authored by Sakthivel Velumani's avatar Sakthivel Velumani
Browse files

Delete job data when no response FIFO

parent 1d9a4a42
No related branches found
No related tags found
2 merge requests!2048integration_2023_w14,!1861NR UE RX Multi-threading
......@@ -98,6 +98,8 @@ void *one_thread(void *arg) {
myThread->runningOnKey=-1;
mutexunlock(tp->incomingFifo.lockF);
}
else
delNotifiedFIFO_elt(elt);
} while (!myThread->terminate);
return NULL;
}
......
......@@ -279,6 +279,8 @@ static inline void pushTpool(tpool_t *t, notifiedFIFO_elt_t *msg) {
if (msg->reponseFifo)
pushNotifiedFIFO(msg->reponseFifo, msg);
else
delNotifiedFIFO_elt(msg);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment