Fix a couple missed renames

trunk
alexis 2023-02-03 11:07:49 -07:00
parent a70db68857
commit 2f00814666
2 changed files with 3 additions and 3 deletions

View File

@ -38,7 +38,7 @@ typedef struct utask_s {
// -- Private - user need not initialize --
uintptr_t _arg;
struct task_s * _next;
struct utask_s * _next;
bool _started;
struct utask_arch_specific _arch;
} utask_t;
@ -50,7 +50,7 @@ typedef struct utask_s {
extern utask_t * current_task;
// Pointer to the task list
extern task_t * volatile task_list;
extern utask_t * volatile task_list;
// Add a task to the queue. The queue may be modified at any time.
//

View File

@ -40,7 +40,7 @@ void utask_run(void)
{
task->_started = true;
_init_stack(task);
task_start(task);
utask_start(task);
}
if (*task->stack_btm != UTASK_STACK_CANARY)