Changeset 10a5479d in mainline
- Timestamp:
- 2012-01-22T14:18:38Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 49ec568, fcae007
- Parents:
- eb2efc7
- Location:
- uspace/srv
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified uspace/srv/hid/input/generic/input.c ¶
reb2efc7 r10a5479d 39 39 #include <adt/list.h> 40 40 #include <bool.h> 41 #include <fibril_synch.h> 41 42 #include <ipc/services.h> 42 43 #include <ipc/input.h> … … 83 84 async_sess_t *irc_sess = NULL; 84 85 86 static FIBRIL_MUTEX_INITIALIZE(discovery_lock); 87 85 88 void kbd_push_data(kbd_dev_t *kdev, sysarg_t data) 86 89 { … … 593 596 int rc; 594 597 598 fibril_mutex_lock(&discovery_lock); 599 595 600 rc = dev_check_new_kbdevs(); 596 if (rc != EOK) 601 if (rc != EOK) { 602 fibril_mutex_unlock(&discovery_lock); 597 603 return rc; 604 } 598 605 599 606 rc = dev_check_new_mousedevs(); 600 if (rc != EOK) 607 if (rc != EOK) { 608 fibril_mutex_unlock(&discovery_lock); 601 609 return rc; 602 610 } 611 612 fibril_mutex_unlock(&discovery_lock); 613 603 614 return EOK; 604 615 } -
TabularUnified uspace/srv/net/net/net.c ¶
reb2efc7 r10a5479d 56 56 #include <adt/measured_strings.h> 57 57 #include <adt/module_map.h> 58 #include <fibril_synch.h> 58 59 #include <loc.h> 59 60 #include <nic.h> … … 76 77 DEVICE_MAP_IMPLEMENT(netifs, netif_t); 77 78 LIST_INITIALIZE(netif_list); 79 80 static FIBRIL_MUTEX_INITIALIZE(discovery_lock); 78 81 79 82 /** Add the configured setting to the configuration map. … … 294 297 printf("%s: Initializing device '%s'\n", NAME, netif->name); 295 298 296 link_initialize(&netif->netif_list);297 298 299 netif->sid = sid; 299 300 netif->sess = loc_service_connect(EXCHANGE_SERIALIZE, netif->sid, … … 535 536 int rc; 536 537 538 fibril_mutex_lock(&discovery_lock); 539 537 540 rc = loc_category_get_id(DEVICE_CATEGORY_NIC, &nic_cat, IPC_FLAG_BLOCKING); 538 541 if (rc != EOK) { … … 569 572 570 573 free(svcs); 574 fibril_mutex_unlock(&discovery_lock); 571 575 return EOK; 572 576 }
Note:
See TracChangeset
for help on using the changeset viewer.