Changeset d1e196f7 in mainline for kernel/generic/src/ipc/sysipc.c


Ignore:
Timestamp:
2011-08-21T12:04:27Z (13 years ago)
Author:
Martin Sucha <sucha14@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
8a6ba94
Parents:
1877128 (diff), a6480d5 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge mainline changes

File:
1 edited

Legend:

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

    r1877128 rd1e196f7  
    5454#include <mm/as.h>
    5555#include <print.h>
     56#include <macros.h>
    5657
    5758/**
     
    252253                        /* The connection was accepted */
    253254                        phone_connect(phoneid, &answer->sender->answerbox);
    254                         /* Set 'task hash' as arg4 of response */
    255                         IPC_SET_ARG4(answer->data, (sysarg_t) TASK);
    256255                        /* Set 'phone hash' as arg5 of response */
    257256                        IPC_SET_ARG5(answer->data,
     
    375374                                    IPC_GET_ARG2(*olddata),
    376375                                    IPC_GET_ARG3(*olddata),
    377                                     (sysarg_t) olddata->task,
    378                                     (sysarg_t) TASK);
     376                                    LOWER32(olddata->task_id),
     377                                    UPPER32(olddata->task_id));
    379378                                IPC_SET_RETVAL(answer->data, rc);
    380379                        }
Note: See TracChangeset for help on using the changeset viewer.