Changeset e8747bd8 in mainline for uspace/srv/sysman/sysman.c


Ignore:
Timestamp:
2019-08-07T09:20:54Z (6 years ago)
Author:
Matthieu Riolo <matthieu.riolo@…>
Children:
2df7d824
Parents:
012dd8e
git-author:
Michal Koutný <xm.koutny+hos@…> (2015-11-01 15:43:57)
git-committer:
Matthieu Riolo <matthieu.riolo@…> (2019-08-07 09:20:54)
Message:

sysman: Use taskman API to detect successful server start

Conflicts:

uspace/srv/logger/main.c

File:
1 edited

Legend:

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

    r012dd8e re8747bd8  
    3535#include "log.h"
    3636#include "sysman.h"
     37#include "task.h"
    3738#include "unit.h"
    3839
     
    401402void sysman_event_unit_exposee_created(void *data)
    402403{
    403         unit_t *unit = data;
    404         unit_exposee_created(unit);
     404        unit_exposee_created(data);
    405405}
    406406
    407407void sysman_event_unit_failed(void *data)
    408408{
    409         unit_t *unit = data;
    410         unit_fail(unit);
     409        unit_fail(data);
    411410}
    412411
     
    415414        notify_observers(data);
    416415}
     416
Note: See TracChangeset for help on using the changeset viewer.