Skip to content

Commit a4ae856

Browse files
authored
schedule: fix linked-list (per @dok-net review) (#6147)
1 parent 2d9253e commit a4ae856

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

cores/esp8266/Schedule.cpp

+5
Original file line numberDiff line numberDiff line change
@@ -120,10 +120,12 @@ void run_scheduled_functions()
120120
{
121121
if (toCall->mFunc())
122122
{
123+
// function stays in list
123124
lastRecurring = toCall;
124125
}
125126
else
126127
{
128+
// function removed from list
127129
InterruptLock lockAllInterruptsInThisScope;
128130

129131
if (sFirst == toCall)
@@ -137,6 +139,9 @@ void run_scheduled_functions()
137139
recycle_fn_unsafe(toCall);
138140
}
139141
}
142+
else
143+
// function stays in list
144+
lastRecurring = toCall;
140145
}
141146

142147
fence = false;

0 commit comments

Comments
 (0)