Rename proc_spawn_thread to proc_clone

This commit is contained in:
2026-01-19 22:01:44 +01:00
parent 38a43b59b0
commit a29233f853
7 changed files with 13 additions and 14 deletions

View File

@@ -34,7 +34,7 @@ int make_thread (void (*fn) (void)) {
return -ST_OOM_ERROR;
uintptr_t stack_top = (uintptr_t)stack + stack_size;
return proc_spawn_thread (stack_top, stack_size, (void*)fn);
return proc_clone (stack_top, stack_size, (void*)fn);
}
void app_main (void) {