Revert TLSF

This reverts commit 5dddb075ac
This commit is contained in:
MX
2024-05-16 05:12:51 +03:00
parent 97d5b8b6f6
commit 0ae78dfcdd
21 changed files with 645 additions and 629 deletions
+2 -2
View File
@@ -276,8 +276,8 @@ void furi_thread_start(FuriThread* thread) {
stack,
thread,
priority,
memmgr_aux_pool_alloc(sizeof(StackType_t) * stack),
memmgr_aux_pool_alloc(sizeof(StaticTask_t)));
memmgr_alloc_from_pool(sizeof(StackType_t) * stack),
memmgr_alloc_from_pool(sizeof(StaticTask_t)));
} else {
BaseType_t ret = xTaskCreate(
furi_thread_body, thread->name, stack, thread, priority, &thread->task_handle);