Changeset 763e0cd in mainline
- Timestamp:
- 2011-08-18T14:25:52Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- d0dd7b5, f55b12b
- Parents:
- 1dc4a5e
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified boot/Makefile.common ¶
r1dc4a5e r763e0cd 150 150 $(USPACE_PATH)/app/kill/kill \ 151 151 $(USPACE_PATH)/app/killall/killall \ 152 $(USPACE_PATH)/app/locinfo/locinfo \ 152 153 $(USPACE_PATH)/app/mkfat/mkfat \ 153 154 $(USPACE_PATH)/app/lsusb/lsusb \ -
TabularUnified uspace/Makefile ¶
r1dc4a5e r763e0cd 44 44 app/killall \ 45 45 app/klog \ 46 app/locinfo \ 46 47 app/lsusb \ 47 48 app/mkfat \ -
TabularUnified uspace/lib/c/generic/loc.c ¶
r1dc4a5e r763e0cd 364 364 } 365 365 366 /** Get service name. 367 * 368 * Provided ID of a service, return its name. 369 * 370 * @param svc_id Service ID 366 /** Get object name. 367 * 368 * Provided ID of an object, return its name. 369 * 370 * @param method IPC method 371 * @param id Object ID 371 372 * @param name Place to store pointer to new string. Caller should 372 373 * free it using free(). 373 374 * @return EOK on success or negative error code 374 375 */ 375 int loc_service_get_name(service_id_t svc_id, char **name)376 static int loc_get_name_internal(sysarg_t method, sysarg_t id, char **name) 376 377 { 377 378 async_exch_t *exch; … … 385 386 386 387 ipc_call_t answer; 387 aid_t req = async_send_1(exch, LOC_SERVICE_GET_NAME, svc_id, &answer);388 aid_t req = async_send_1(exch, method, id, &answer); 388 389 aid_t dreq = async_data_read(exch, name_buf, LOC_NAME_MAXLEN, 389 390 &dreply); … … 414 415 } 415 416 417 /** Get category name. 418 * 419 * Provided ID of a service, return its name. 420 * 421 * @param cat_id Category ID 422 * @param name Place to store pointer to new string. Caller should 423 * free it using free(). 424 * @return EOK on success or negative error code 425 */ 426 int loc_category_get_name(category_id_t cat_id, char **name) 427 { 428 return loc_get_name_internal(LOC_CATEGORY_GET_NAME, cat_id, name); 429 } 430 431 /** Get service name. 432 * 433 * Provided ID of a service, return its name. 434 * 435 * @param svc_id Service ID 436 * @param name Place to store pointer to new string. Caller should 437 * free it using free(). 438 * @return EOK on success or negative error code 439 */ 440 int loc_service_get_name(service_id_t svc_id, char **name) 441 { 442 return loc_get_name_internal(LOC_SERVICE_GET_NAME, svc_id, name); 443 } 416 444 417 445 int loc_namespace_get_id(const char *name, service_id_t *handle, -
TabularUnified uspace/lib/c/include/ipc/loc.h ¶
r1dc4a5e r763e0cd 59 59 LOC_CALLBACK_CREATE, 60 60 LOC_CATEGORY_GET_ID, 61 LOC_CATEGORY_GET_NAME, 61 62 LOC_CATEGORY_GET_SVCS, 62 63 LOC_ID_PROBE, -
TabularUnified uspace/srv/loc/loc.c ¶
r1dc4a5e r763e0cd 536 536 } 537 537 538 static void loc_category_get_name(ipc_callid_t iid, ipc_call_t *icall) 539 { 540 ipc_callid_t callid; 541 size_t size; 542 size_t act_size; 543 category_t *cat; 544 545 if (!async_data_read_receive(&callid, &size)) { 546 async_answer_0(callid, EREFUSED); 547 async_answer_0(iid, EREFUSED); 548 return; 549 } 550 551 fibril_mutex_lock(&cdir.mutex); 552 553 cat = category_get(&cdir, IPC_GET_ARG1(*icall)); 554 if (cat == NULL) { 555 fibril_mutex_unlock(&cdir.mutex); 556 async_answer_0(callid, ENOENT); 557 async_answer_0(iid, ENOENT); 558 return; 559 } 560 561 act_size = str_size(cat->name); 562 if (act_size > size) { 563 fibril_mutex_unlock(&cdir.mutex); 564 async_answer_0(callid, EOVERFLOW); 565 async_answer_0(iid, EOVERFLOW); 566 return; 567 } 568 569 sysarg_t retval = async_data_read_finalize(callid, cat->name, 570 min(size, act_size)); 571 572 fibril_mutex_unlock(&cdir.mutex); 573 574 async_answer_0(iid, retval); 575 } 576 538 577 static void loc_service_get_name(ipc_callid_t iid, ipc_call_t *icall) 539 578 { … … 574 613 async_answer_0(iid, retval); 575 614 } 576 577 615 578 616 /** Connect client to the service. … … 1298 1336 loc_category_get_id(callid, &call); 1299 1337 break; 1338 case LOC_CATEGORY_GET_NAME: 1339 loc_category_get_name(callid, &call); 1340 break; 1300 1341 case LOC_CATEGORY_GET_SVCS: 1301 1342 loc_category_get_svcs(callid, &call);
Note:
See TracChangeset
for help on using the changeset viewer.