Changes in kernel/generic/src/ipc/ops/pagein.c [b30846e:90f20cf] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/ipc/ops/pagein.c
rb30846e r90f20cf 44 44 #include <arch.h> 45 45 46 static int pagein_request_pr ocess(call_t *call, answerbox_t *box)46 static int pagein_request_preprocess(call_t *call, phone_t *phone) 47 47 { 48 48 /* … … 52 52 * wanted to be each other's pager. 53 53 */ 54 if ( call->sender->taskid <= TASK->taskid)54 if (TASK->taskid <= phone->callee->task->taskid) 55 55 return ENOTSUP; 56 56 else … … 97 97 98 98 sysipc_ops_t ipc_m_page_in_ops = { 99 .request_preprocess = null_request_preprocess,99 .request_preprocess = pagein_request_preprocess, 100 100 .request_forget = null_request_forget, 101 .request_process = pagein_request_process,101 .request_process = null_request_process, 102 102 .answer_cleanup = null_answer_cleanup, 103 103 .answer_preprocess = pagein_answer_preprocess,
Note:
See TracChangeset
for help on using the changeset viewer.