Changeset 5a88d87 in mainline for uspace/srv/sysman/sysman.c
- Timestamp:
- 2019-08-17T13:13:53Z (6 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)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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.