Changeset 9532981 in mainline for uspace/srv/sysman/job.c
- Timestamp:
- 2019-08-07T09:35:37Z (6 years ago)
- Children:
- db34424
- Parents:
- af92309
- git-author:
- Michal Koutný <xm.koutny+hos@…> (2015-11-02 23:10:51)
- git-committer:
- Matthieu Riolo <matthieu.riolo@…> (2019-08-07 09:35:37)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/sysman/job.c
raf92309 r9532981 33 33 34 34 #include "repo.h" 35 #include " dep.h"35 #include "edge.h" 36 36 #include "job.h" 37 37 #include "log.h" … … 411 411 * appropriate jobs (currently "After" only). 412 412 */ 413 list_foreach(unit-> dependencies, dependencies, unit_dependency_t, dep) {414 unit_t *u = dep->dependency;413 list_foreach(unit->edges_out, edges_out, unit_edge_t, e) { 414 unit_t *u = e->output; 415 415 job_t *blocking_job; 416 416
Note:
See TracChangeset
for help on using the changeset viewer.