Changeset 463e734 in mainline
- Timestamp:
- 2010-12-04T20:36:56Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 4006447, 87b4baa
- Parents:
- 42be09b
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/ipc/ipc.h
r42be09b r463e734 45 45 /** Maximum active async calls per thread */ 46 46 #ifdef CONFIG_DEBUG 47 #define IPC_MAX_ASYNC_CALLS 847 #define IPC_MAX_ASYNC_CALLS 4 48 48 #else 49 49 #define IPC_MAX_ASYNC_CALLS 4000 -
uspace/srv/devman/devman.c
r42be09b r463e734 678 678 } 679 679 680 static FIBRIL_MUTEX_INITIALIZE(add_device_guard); 680 681 681 682 /** Pass a device to running driver. … … 686 687 void add_device(int phone, driver_t *drv, node_t *node, dev_tree_t *tree) 687 688 { 689 fibril_mutex_lock(&add_device_guard); 690 688 691 /* 689 692 * We do not expect to have driver's mutex locked as we do not … … 716 719 /* Wait for answer from the driver. */ 717 720 async_wait_for(req, &rc); 721 722 fibril_mutex_unlock(&add_device_guard); 718 723 719 724 switch(rc) {
Note:
See TracChangeset
for help on using the changeset viewer.