Changeset 09ab0a9a in mainline for kernel/generic/src/ipc
- Timestamp:
- 2018-09-13T12:05:53Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- cc74cb5
- Parents:
- b2aaaa0
- git-author:
- Jiri Svoboda <jiri@…> (2018-09-13 07:09:46)
- git-committer:
- Jiri Svoboda <jiri@…> (2018-09-13 12:05:53)
- Location:
- kernel/generic/src/ipc
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/ipc/ipc.c
rb2aaaa0 r09ab0a9a 527 527 } 528 528 529 530 529 /** Wait for a phone call. 531 530 * … … 888 887 0, NULL, NULL, 0); 889 888 } 890 891 889 892 890 static void ipc_print_call_list(list_t *list) -
kernel/generic/src/ipc/ipcrsc.c
rb2aaaa0 r09ab0a9a 147 147 .destroy = phone_destroy 148 148 }; 149 150 149 151 150 /** Allocate new phone in the specified task. -
kernel/generic/src/ipc/ops/concttome.c
rb2aaaa0 r09ab0a9a 102 102 } 103 103 104 105 104 sysipc_ops_t ipc_m_connect_to_me_ops = { 106 105 .request_preprocess = null_request_preprocess, -
kernel/generic/src/ipc/ops/datawrite.c
rb2aaaa0 r09ab0a9a 94 94 } 95 95 96 97 96 sysipc_ops_t ipc_m_data_write_ops = { 98 97 .request_preprocess = request_preprocess, -
kernel/generic/src/ipc/sysipc.c
rb2aaaa0 r09ab0a9a 118 118 } 119 119 120 121 120 /* 122 121 * Functions that preprocess answer before sending it to the recepient. … … 245 244 SYSIPC_OP(answer_process, call); 246 245 } 247 248 246 249 247 /** Do basic kernel processing of received call request.
Note:
See TracChangeset
for help on using the changeset viewer.