Ignore:
File:
1 edited

Legend:

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

    rc0699467 rab34cc9  
    4040#include <synch/mutex.h>
    4141#include <synch/waitq.h>
     42#include <typedefs.h>
    4243
    4344#define IPC_MAX_PHONES  32
     
    9798typedef struct {
    9899        sysarg_t args[IPC_CALL_LEN];
    99         /** Task which made or forwarded the call with IPC_FF_ROUTE_FROM_ME. */
    100         struct task *task;
     100        /**
     101         * Task which made or forwarded the call with IPC_FF_ROUTE_FROM_ME,
     102         * or the task which answered the call.
     103         */
     104        task_id_t task_id;
    101105        /** Phone which made or last masqueraded this call. */
    102106        phone_t *phone;
Note: See TracChangeset for help on using the changeset viewer.