Changeset 2c2d54a in mainline for kernel/generic/include/ipc/ipc.h


Ignore:
Timestamp:
2016-09-02T17:58:05Z (9 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
4c3602c4
Parents:
4bf0926e (diff), 3233adb (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 from lp:~jakub/helenos/pager

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/include/ipc/ipc.h

    r4bf0926e r2c2d54a  
    147147        struct task *sender;
    148148       
     149        /*
     150         * Answerbox that will receive the answer.
     151         * This will most of the times be the sender's answerbox,
     152         * but we allow for useful exceptions.
     153         */
     154        answerbox_t *callerbox;
     155
    149156        /** Phone which was used to send the call. */
    150157        phone_t *caller_phone;
     
    172179extern void ipc_call_release(call_t *);
    173180
     181extern int ipc_call_sync(phone_t *, call_t *);
    174182extern int ipc_call(phone_t *, call_t *);
    175183extern call_t *ipc_wait_for_call(answerbox_t *, uint32_t, unsigned int);
Note: See TracChangeset for help on using the changeset viewer.