Changes in / [7a2f7ecd:9247c02c] in mainline


Ignore:
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/ipc/sysipc.c

    r7a2f7ecd r9247c02c  
    253253                        /* The connection was accepted */
    254254                        phone_connect(phoneid, &answer->sender->answerbox);
    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));
     255                        /* Set 'task hash' as arg4 of response */
     256                        IPC_SET_ARG4(answer->data, (sysarg_t) TASK);
    258257                        /* Set 'phone hash' as arg5 of response */
    259258                        IPC_SET_ARG5(answer->data,
  • uspace/lib/c/generic/async.c

    r7a2f7ecd r9247c02c  
    14721472                return ENOENT;
    14731473       
    1474         task_id_t task_id;
    1475         sysarg_t task_id_lo;
    1476         sysarg_t task_id_hi;
     1474        sysarg_t task_hash;
    14771475        sysarg_t phone_hash;
    14781476        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);
     1477            NULL, NULL, NULL, &task_hash, &phone_hash);
    14801478        if (rc != EOK)
    14811479                return rc;
    1482 
    1483         task_id = (task_id_t) MERGE_LOUP32(task_id_lo, task_id_hi);
    14841480       
    14851481        if (client_receiver != NULL)
    1486                 async_new_connection(task_id, phone_hash, 0, NULL,
     1482                async_new_connection(task_hash, phone_hash, 0, NULL,
    14871483                    client_receiver, carg);
    14881484       
Note: See TracChangeset for help on using the changeset viewer.