feat: added ps command

This commit is contained in:
2021-08-12 20:31:11 +02:00
parent 94c6332e27
commit 3034a5d417
4 changed files with 34 additions and 10 deletions

View File

@@ -19,7 +19,7 @@ void task_start_first();
void task_switch_next();
pid_t task_spawn(task_entrypoint, void *entry_data, char* name);
pid_t task_spawn(task_entrypoint, void *entry_data, char *name);
void task_end(pid_t tid);
@@ -27,7 +27,7 @@ void task_suspend();
pid_t task_get_current_tid();
void task_signal(uint32_t tid);
void task_signal(pid_t tid);
void task_lock_acquire();
@@ -35,4 +35,6 @@ void task_ensure_enabled();
void task_lock_free();
void task_print_all();
#endif //NEW_KERNEL_TASK_H