Changeset bb154c6 in mainline for uspace/srv/sysman/sysman.c
- Timestamp:
- 2019-08-03T08:15:25Z (6 years ago)
- Children:
- 09a8006
- Parents:
- 6006f35
- git-author:
- Michal Koutný <xm.koutny+hos@…> (2015-04-15 15:14:58)
- git-committer:
- Matthieu Riolo <matthieu.riolo@…> (2019-08-03 08:15:25)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/sysman/sysman.c
r6006f35 rbb154c6 22 22 job->unit = unit; 23 23 24 list_foreach(unit->dependencies, dependencies, unit_dependency_t, edge) {24 list_foreach(unit->dependencies, dependencies, unit_dependency_t, dep) { 25 25 job_t *blocking_job = NULL; 26 rc = sysman_create_closure_jobs( edge->dependency, &blocking_job,26 rc = sysman_create_closure_jobs(dep->dependency, &blocking_job, 27 27 accumulator, type); 28 28 if (rc != EOK) { … … 55 55 56 56 job_t *job = NULL; 57 // TODO shouldn't be here read-lock on configuration? 57 58 int rc = sysman_create_closure_jobs(unit, &job, &new_jobs, JOB_START); 58 59 if (rc != EOK) {
Note:
See TracChangeset
for help on using the changeset viewer.