Changeset 554debd in mainline
- Timestamp:
- 2010-12-11T21:52:46Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5174c62, 96b02eb9
- Parents:
- 97d17fe
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/devman/devman.c
r97d17fe r554debd 678 678 } 679 679 680 static FIBRIL_MUTEX_INITIALIZE(add_device_guard);681 682 680 /** Pass a device to running driver. 683 681 * … … 687 685 void add_device(int phone, driver_t *drv, node_t *node, dev_tree_t *tree) 688 686 { 689 fibril_mutex_lock(&add_device_guard);690 691 687 /* 692 688 * We do not expect to have driver's mutex locked as we do not … … 719 715 /* Wait for answer from the driver. */ 720 716 async_wait_for(req, &rc); 721 722 fibril_mutex_unlock(&add_device_guard);723 717 724 718 switch(rc) {
Note:
See TracChangeset
for help on using the changeset viewer.