Delete PointerQueue::dequeuePtrFromISR, unused since commit db766f1 (#99). (#10090)

This commit is contained in:
Catalin Patulea
2026-04-10 16:20:25 -05:00
committed by GitHub
co-authored by GitHub
parent b2c8cbb78d
commit 4990bf51e3
-10
View File
@@ -17,14 +17,4 @@ template <class T> class PointerQueue : public TypedQueue<T *>
return this->dequeue(&p, maxWait) ? p : nullptr;
}
#ifdef HAS_FREE_RTOS
// returns a ptr or null if the queue was empty
T *dequeuePtrFromISR(BaseType_t *higherPriWoken)
{
T *p;
return this->dequeueFromISR(&p, higherPriWoken) ? p : nullptr;
}
#endif
};