Changeset 01900b6 in mainline for uspace/lib/c/generic/loc.c
- Timestamp:
- 2020-01-21T15:10:26Z (5 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 51da086
- Parents:
- f8fb03b
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/loc.c
rf8fb03b r01900b6 153 153 loc_supp_block_sess = 154 154 service_connect_blocking(SERVICE_LOC, 155 INTERFACE_LOC_SUPPLIER, 0 );155 INTERFACE_LOC_SUPPLIER, 0, NULL); 156 156 } 157 157 … … 172 172 loc_cons_block_sess = 173 173 service_connect_blocking(SERVICE_LOC, 174 INTERFACE_LOC_CONSUMER, 0 );174 INTERFACE_LOC_CONSUMER, 0, NULL); 175 175 } 176 176 … … 202 202 loc_supplier_sess = 203 203 service_connect(SERVICE_LOC, 204 INTERFACE_LOC_SUPPLIER, 0 );204 INTERFACE_LOC_SUPPLIER, 0, NULL); 205 205 206 206 fibril_mutex_unlock(&loc_supplier_mutex); … … 216 216 loc_consumer_sess = 217 217 service_connect(SERVICE_LOC, 218 INTERFACE_LOC_CONSUMER, 0 );218 INTERFACE_LOC_CONSUMER, 0, NULL); 219 219 220 220 fibril_mutex_unlock(&loc_consumer_mutex); … … 567 567 568 568 if (flags & IPC_FLAG_BLOCKING) 569 sess = service_connect_blocking(SERVICE_LOC, iface, handle );569 sess = service_connect_blocking(SERVICE_LOC, iface, handle, NULL); 570 570 else 571 sess = service_connect(SERVICE_LOC, iface, handle );571 sess = service_connect(SERVICE_LOC, iface, handle, NULL); 572 572 573 573 return sess;
Note:
See TracChangeset
for help on using the changeset viewer.