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

@@ -132,7 +132,7 @@ void att_noreturn block_dev_task(void *data) {
void block_dev_start_task() {
block_semaphore = semaphore_create(1);
blockdev_task_running = true;
task_spawn(block_dev_task, NULL);
task_spawn(block_dev_task, NULL, "blockdev");
}
void block_dev_print_info() {