Changeset dda2602 in mainline for uspace/srv/sysman/sysman.c
- Timestamp:
- 2019-08-03T09:41:07Z (6 years ago)
- Children:
- dd5c623
- Parents:
- c0e4fc50
- git-author:
- Michal Koutný <xm.koutny+hos@…> (2015-05-08 11:10:06)
- git-committer:
- Matthieu Riolo <matthieu.riolo@…> (2019-08-03 09:41:07)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/sysman/sysman.c
rc0e4fc50 rdda2602 151 151 152 152 /* Process event */ 153 sysman_log(LVL_DEBUG2, "process_event(%p, %p)",154 event->handler, event->data);153 //sysman_log(LVL_DEBUG2, "process_event(%p, %p)", 154 // event->handler, event->data); 155 155 event->handler(event->data); 156 156 free(event); … … 182 182 void sysman_raise_event(event_handler_t handler, void *data) 183 183 { 184 sysman_log(LVL_DEBUG2, "%s(%p, %p)", __func__, handler, data);184 //sysman_log(LVL_DEBUG2, "%s(%p, %p)", __func__, handler, data); 185 185 event_t *event = malloc(sizeof(event_t)); 186 186 if (event == NULL) {
Note:
See TracChangeset
for help on using the changeset viewer.