We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74ce3b8 commit 6f2b120Copy full SHA for 6f2b120
arch/sim/src/sim/sim_oneshot.c
@@ -180,18 +180,13 @@ static void sim_update_hosttimer(void)
180
static void sim_timer_update_internal(void)
181
{
182
sq_entry_t *entry;
183
- irqstate_t flags;
184
-
185
- flags = enter_critical_section();
186
187
for (entry = sq_peek(&g_oneshot_list); entry; entry = sq_next(entry))
188
189
sim_process_tick(entry);
190
}
191
192
sim_update_hosttimer();
193
194
- leave_critical_section(flags);
195
196
197
/****************************************************************************
0 commit comments