feat: added task names

This commit is contained in:
2021-08-12 20:22:00 +02:00
parent be71f9a7e9
commit 94c6332e27
7 changed files with 32 additions and 12 deletions

View File

@@ -64,5 +64,5 @@ void att_noreturn kprint_task(void *_) {
}
void kprint_start_task() {
task_spawn(kprint_task, NULL);
task_spawn(kprint_task, NULL, "kprint");
}