From fc284298d7dcd6146081586cb6b668aafaf63828 Mon Sep 17 00:00:00 2001 From: Pratheek Shetty Date: Tue, 11 Aug 2026 12:05:48 -0700 Subject: [PATCH] Fix broker enqueue success return value --- mustard/broker_queue.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mustard/broker_queue.h b/mustard/broker_queue.h index 98fd12d..dd4aa69 100644 --- a/mustard/broker_queue.h +++ b/mustard/broker_queue.h @@ -128,7 +128,7 @@ class BrokerWorkDistributorT { putData(data, pe); } - return false; + return writeData; } __device__ inline void dequeue(bool &hasData, unsigned int &data, int pe)