sys_proc_mutex_unlock () automatically reschedule at the end
All checks were successful
Build documentation / build-and-deploy (push) Successful in 29s

This commit is contained in:
2026-01-16 00:28:46 +01:00
parent 711da8aeab
commit 9fc8521e63
2 changed files with 7 additions and 3 deletions

View File

@@ -13,7 +13,6 @@ void mythread (void) {
for (size_t i = 0; i < 3; i++)
proc_test ('b');
proc_mutex_unlock (mutex_rid);
proc_sched ();
}
}
@@ -40,6 +39,5 @@ void app_main (void) {
for (size_t i = 0; i < 3; i++)
proc_test ('a');
proc_mutex_unlock (mutex_rid);
proc_sched ();
}
}