Changeset 9532981 in mainline for uspace/srv/sysman/job.c


Ignore:
Timestamp:
2019-08-07T09:35:37Z (6 years ago)
Author:
Matthieu Riolo <matthieu.riolo@…>
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)
Message:

sysman: Rename dependency to edge (more generic)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/sysman/job.c

    raf92309 r9532981  
    3333
    3434#include "repo.h"
    35 #include "dep.h"
     35#include "edge.h"
    3636#include "job.h"
    3737#include "log.h"
     
    411411                 * appropriate jobs (currently "After" only).
    412412                 */
    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;
    415415                        job_t *blocking_job;
    416416
Note: See TracChangeset for help on using the changeset viewer.