We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df4ceee commit 0dbfcb1Copy full SHA for 0dbfcb1
rtos/Semaphore.cpp
@@ -60,7 +60,6 @@ int32_t Semaphore::wait(uint32_t millisec) {
60
61
int32_t Semaphore::wait_until(uint64_t millisec) {
62
uint64_t now = Kernel::get_ms_count();
63
- uint32_t timeout;
64
65
if (now >= millisec) {
66
return wait(0);
0 commit comments