Changes in uspace/lib/c/generic/loc.c [ca48672:7d7f5e3] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/loc.c
rca48672 r7d7f5e3 1 1 /* 2 * Copyright (c) 202 5Jiri Svoboda2 * Copyright (c) 2023 Jiri Svoboda 3 3 * Copyright (c) 2007 Josef Cejka 4 4 * All rights reserved. … … 258 258 * @param srv Server object 259 259 * @param fqsn Fully qualified service name 260 * @param portid ID of port providing the service261 260 * @param sid Service ID of new service 262 261 * 263 262 */ 264 263 errno_t loc_service_register(loc_srv_t *srv, const char *fqsn, 265 port_id_t portid,service_id_t *sid)264 service_id_t *sid) 266 265 { 267 266 async_exch_t *exch = async_exchange_begin(srv->sess); 268 267 ipc_call_t answer; 269 aid_t req = async_send_ 1(exch, LOC_SERVICE_REGISTER, portid, &answer);268 aid_t req = async_send_0(exch, LOC_SERVICE_REGISTER, &answer); 270 269 errno_t retval = async_data_write_start(exch, fqsn, str_size(fqsn)); 271 270
Note:
See TracChangeset
for help on using the changeset viewer.