Skip to content

Commit 6712b7b

Browse files
committed
Change to constexpr and use the appropriate type for DELAY_BETWEEN_ATTEMPTS
Since xTicksToWait is TickType_t (uint32) and SDL_Delay takes uint32 as well, we should avoid any chance of funny business due to differences in signedness.
1 parent d1c3509 commit 6712b7b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sim/semphr.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ QueueHandle_t xSemaphoreCreateMutex() {
1313
BaseType_t xSemaphoreTake(SemaphoreHandle_t xSemaphore,
1414
TickType_t xTicksToWait) {
1515
Queue_t *pxQueue = (Queue_t *)xSemaphore;
16-
const int DELAY_BETWEEN_ATTEMPTS = 25;
16+
constexpr TickType_t DELAY_BETWEEN_ATTEMPTS = 25;
1717
do {
1818
if (pxQueue->mutex.try_lock()) {
1919
std::lock_guard<std::mutex> lock(pxQueue->mutex, std::adopt_lock);

0 commit comments

Comments
 (0)