Changeset f2c8f55 in mainline for uspace/lib/c/generic/async/server.c


Ignore:
Timestamp:
2018-08-03T12:41:38Z (7 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
c92dfed
Parents:
f67d8ee
Message:

IPC_M_SHARE_IN: source has no business deciding destination address

Make the use of kernel-set arguments more consistent with
IPC_M_CONNECT_* methods (i.e. allocate the kernel-set arguments from the
end). Improve the documentation of IPC_M_SHARE_IN.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/generic/async/server.c

    rf67d8ee rf2c8f55  
    12281228        assert(call);
    12291229
    1230         // FIXME: The source has no business deciding destination address.
    1231         return ipc_answer_3(call->cap_handle, EOK, (sysarg_t) src, (sysarg_t) flags,
    1232             (sysarg_t) __progsymbols.end);
     1230        return ipc_answer_2(call->cap_handle, EOK, (sysarg_t) src, (sysarg_t) flags);
    12331231}
    12341232
Note: See TracChangeset for help on using the changeset viewer.