Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/ipc/ops/pagein.c

    rb7fd2a0 rb30846e  
    4444#include <arch.h>
    4545
    46 static errno_t pagein_request_preprocess(call_t *call, phone_t *phone)
     46static int pagein_request_process(call_t *call, answerbox_t *box)
    4747{
    4848        /*
     
    5252         * wanted to be each other's pager.
    5353         */
    54         if (TASK->taskid <= phone->callee->task->taskid)
     54        if (call->sender->taskid <= TASK->taskid)
    5555                return ENOTSUP;
    5656        else
     
    5858}
    5959
    60 static errno_t pagein_answer_preprocess(call_t *answer, ipc_data_t *olddata)
     60static int pagein_answer_preprocess(call_t *answer, ipc_data_t *olddata)
    6161{
    6262        /*
     
    9797
    9898sysipc_ops_t ipc_m_page_in_ops = {
    99         .request_preprocess = pagein_request_preprocess,
     99        .request_preprocess = null_request_preprocess,
    100100        .request_forget = null_request_forget,
    101         .request_process = null_request_process,
     101        .request_process = pagein_request_process,
    102102        .answer_cleanup = null_answer_cleanup,
    103103        .answer_preprocess = pagein_answer_preprocess,
Note: See TracChangeset for help on using the changeset viewer.