From d32cb1ddac768c1053c99f897091094b14834062 Mon Sep 17 00:00:00 2001 From: Hayodea Hekol Date: Mon, 29 Sep 2025 19:46:44 -0400 Subject: [PATCH] Lockvoker: print contin vaddr in false-positive ack --- include/serializedAsynchronousContinuation.h | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/include/serializedAsynchronousContinuation.h b/include/serializedAsynchronousContinuation.h index f163c45..93f2f8e 100644 --- a/include/serializedAsynchronousContinuation.h +++ b/include/serializedAsynchronousContinuation.h @@ -193,10 +193,14 @@ public: if (removed) { - std::cerr << "LockerAndInvoker::operator(): False positive gridlock " - "detection - continuation was being tracked but successfully " - "acquired all locks. This was likely due to timed delay, " - "long-running operation, or I/O delay." << std::endl; + std::cerr + << "LockerAndInvoker::operator(): False positive " + "gridlock detection - continuation @" + << serializedContinuation.get() + << " was being tracked but successfully acquired all " + "locks. This was likely due to timed delay, " + "long-running operation, or I/O delay." + << std::endl; } } #endif