Rename proc_spawn_thread to proc_clone
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user