Changeset 5a88d87 in mainline
- Timestamp:
- 2019-08-17T13:13:53Z (5 years ago)
- Children:
- c7b9db03
- Parents:
- ff20afc
- git-author:
- Michal Koutný <xm.koutny+hos@…> (2015-12-04 14:00:12)
- git-committer:
- Matthieu Riolo <matthieu.riolo@…> (2019-08-17 13:13:53)
- Location:
- uspace/srv/sysman
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/sysman/connection_broker.c
rff20afc r5a88d87 69 69 unit_t *unit = repo_find_unit_by_name(unit_name); 70 70 if (unit == NULL) { 71 //sysman_log(LVL_NOTE, "Unit '%s' not found.", unit_name);72 71 retval = ENOENT; 73 72 goto finish; … … 97 96 } 98 97 99 //sysman_log(LVL_DEBUG2, "%s(%s)", __func__, exposee);100 98 101 99 retval = ENOTSUP; -
uspace/srv/sysman/sysman.c
rff20afc r5a88d87 196 196 197 197 /* Process event */ 198 //sysman_log(LVL_DEBUG2, "process_event(%p, %p)",199 // event->handler, event->data);200 198 event->handler(event->data); 201 199 free(event); … … 238 236 void sysman_raise_event(event_handler_t handler, void *data) 239 237 { 240 //sysman_log(LVL_DEBUG2, "%s(%p, %p)", __func__, handler, data);241 238 event_t *event = malloc(sizeof(event_t)); 242 239 if (event == NULL) {
Note:
See TracChangeset
for help on using the changeset viewer.