Changeset e8747bd8 in mainline for uspace/srv/sysman/sysman.c
- Timestamp:
- 2019-08-07T09:20:54Z (6 years ago)
- 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)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified uspace/srv/sysman/sysman.c ¶
r012dd8e re8747bd8 35 35 #include "log.h" 36 36 #include "sysman.h" 37 #include "task.h" 37 38 #include "unit.h" 38 39 … … 401 402 void sysman_event_unit_exposee_created(void *data) 402 403 { 403 unit_t *unit = data; 404 unit_exposee_created(unit); 404 unit_exposee_created(data); 405 405 } 406 406 407 407 void sysman_event_unit_failed(void *data) 408 408 { 409 unit_t *unit = data; 410 unit_fail(unit); 409 unit_fail(data); 411 410 } 412 411 … … 415 414 notify_observers(data); 416 415 } 416
Note:
See TracChangeset
for help on using the changeset viewer.