Changeset ac2c3f8f in mainline
- Timestamp:
- 2011-09-23T15:41:57Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 6fe0bf8d
- Parents:
- 086290d (diff), 8895d05 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - Location:
- uspace
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/usbhub/usbhub.c
r086290d rac2c3f8f 130 130 131 131 opResult = ddf_fun_bind(hub_fun); 132 assert(opResult == EOK);133 opResult = ddf_fun_add_to_category(hub_fun, "hub");134 132 assert(opResult == EOK); 135 133 -
uspace/lib/c/generic/malloc.c
r086290d rac2c3f8f 873 873 void free(const void *addr) 874 874 { 875 if (addr == NULL) 876 return; 877 875 878 futex_down(&malloc_futex); 876 879 -
uspace/srv/devman/main.c
r086290d rac2c3f8f 490 490 if (rc == EOK) { 491 491 loc_service_add_to_cat(fun->service_id, cat_id); 492 log_msg(LVL_NOTE, "Function `%s' added to category `%s'.", 493 fun->pathname, cat_name); 492 494 } else { 493 495 log_msg(LVL_ERROR, "Failed adding function `%s' to category " … … 495 497 } 496 498 497 log_msg(LVL_NOTE, "Function `%s' added to category `%s'.",498 fun->pathname, cat_name);499 500 499 fibril_rwlock_read_unlock(&device_tree.rwlock); 501 500 fun_del_ref(fun); 502 503 async_answer_0(callid, EOK);501 502 async_answer_0(callid, rc); 504 503 } 505 504
Note:
See TracChangeset
for help on using the changeset viewer.