Changeset 9532981 in mainline for uspace/srv/sysman/main.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/main.c

    raf92309 r9532981  
    4040#include "connection_broker.h"
    4141#include "connection_ctl.h"
    42 #include "dep.h"
     42#include "edge.h"
    4343#include "job.h"
    4444#include "log.h"
     
    137137        repo_add_unit(tgt_init);
    138138
    139         rc = dep_add_dependency(tgt_init, cfg_init);
     139        rc = edge_connect(tgt_init, cfg_init);
    140140        if (rc != EOK) {
    141141                goto rollback;
    142142        }
    143143
    144         rc = dep_add_dependency(cfg_init, mnt_initrd);
     144        rc = edge_connect(cfg_init, mnt_initrd);
    145145        if (rc != EOK) {
    146146                goto rollback;
Note: See TracChangeset for help on using the changeset viewer.