Changeset 36b16bc in mainline
- Timestamp:
 - 2011-08-19T16:04:37Z (14 years ago)
 - Branches:
 - lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
 - Children:
 - 633bcc6, 7a2f7ecd
 - Parents:
 - e2ab36f1
 - Files:
 - 
      
- 2 edited
 
- 
          
  kernel/generic/src/ipc/sysipc.c (modified) (1 diff)
 - 
          
  uspace/lib/c/generic/async.c (modified) (1 diff)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
kernel/generic/src/ipc/sysipc.c
re2ab36f1 r36b16bc 253 253 /* The connection was accepted */ 254 254 phone_connect(phoneid, &answer->sender->answerbox); 255 /* Set 'task hash' as arg4 of response */ 256 IPC_SET_ARG4(answer->data, (sysarg_t) TASK); 255 /* Set 'task ID' as arg3 and arg4 of response */ 256 IPC_SET_ARG3(answer->data, LOWER32(TASK->taskid)); 257 IPC_SET_ARG4(answer->data, UPPER32(TASK->taskid)); 257 258 /* Set 'phone hash' as arg5 of response */ 258 259 IPC_SET_ARG5(answer->data,  - 
      
uspace/lib/c/generic/async.c
re2ab36f1 r36b16bc 1472 1472 return ENOENT; 1473 1473 1474 sysarg_t task_hash; 1474 task_id_t task_id; 1475 sysarg_t task_id_lo; 1476 sysarg_t task_id_hi; 1475 1477 sysarg_t phone_hash; 1476 1478 int rc = async_req_3_5(exch, IPC_M_CONNECT_TO_ME, arg1, arg2, arg3, 1477 NULL, NULL, NULL, &task_hash, &phone_hash);1479 NULL, NULL, &task_id_lo, &task_id_hi, &phone_hash); 1478 1480 if (rc != EOK) 1479 1481 return rc; 1482 1483 task_id = (task_id_t) MERGE_LOUP32(task_id_lo, task_id_hi); 1480 1484 1481 1485 if (client_receiver != NULL) 1482 async_new_connection(task_ hash, phone_hash, 0, NULL,1486 async_new_connection(task_id, phone_hash, 0, NULL, 1483 1487 client_receiver, carg); 1484 1488  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.
  