tasks: show resources

This commit is contained in:
André Roth
2026-06-09 10:09:41 +02:00
parent 0a98d9fdc3
commit 010767fabb
2 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -52,7 +52,7 @@ type Task struct {
Name string
ID int
State State
resources []string
Resources []string
wgTask *sync.WaitGroup
}
@@ -65,7 +65,7 @@ func NewTask(process Process, name string, ID int, resources []string, wgTask *s
Name: name,
ID: ID,
State: IDLE,
resources: resources,
Resources: resources,
wgTask: wgTask,
}
return task