Changeset ab34cc9 in mainline for uspace/lib/c/generic/async.c
- Timestamp:
- 2011-08-19T18:03:34Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 7b2a7ad
- Parents:
- 16f9782
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/async.c
r16f9782 rab34cc9 1472 1472 return ENOENT; 1473 1473 1474 task_id_t task_id;1475 sysarg_t task_id_lo;1476 sysarg_t task_id_hi;1477 1474 sysarg_t phone_hash; 1478 int rc = async_req_3_5(exch, IPC_M_CONNECT_TO_ME, arg1, arg2, arg3, 1479 NULL, NULL, &task_id_lo, &task_id_hi, &phone_hash); 1475 sysarg_t rc; 1476 1477 aid_t req; 1478 ipc_call_t answer; 1479 req = async_send_3(exch, IPC_M_CONNECT_TO_ME, arg1, arg2, arg3, 1480 &answer); 1481 async_wait_for(req, &rc); 1480 1482 if (rc != EOK) 1481 return rc;1482 1483 task_id = (task_id_t) MERGE_LOUP32(task_id_lo, task_id_hi);1484 1483 return (int) rc; 1484 1485 phone_hash = IPC_GET_ARG5(answer); 1486 1485 1487 if (client_receiver != NULL) 1486 async_new_connection( task_id, phone_hash, 0, NULL,1488 async_new_connection(answer.in_task_id, phone_hash, 0, NULL, 1487 1489 client_receiver, carg); 1488 1490
Note:
See TracChangeset
for help on using the changeset viewer.