Changes between Version 8 and Version 9 of IPC
- Timestamp:
- 2018-07-05T09:50:32Z (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TabularUnified IPC
v8 v9 197 197 198 198 {{{ 199 async_answer_1( callid, EOK, fd);200 }}} 201 202 In this example, ''call id'' is the capability ofthe received call, ''EOK'' is the return value and ''fd'' is the only return argument.199 async_answer_1(&call, EOK, fd); 200 }}} 201 202 In this example, ''call'' is the received call, ''EOK'' is the return value and ''fd'' is the only return argument. 203 203 204 204 == Passing large data via IPC == #IpcDataCopy … … 246 246 #include <async.h> 247 247 ... 248 ipc_call id_t callid;248 ipc_call_t call; 249 249 size_t len; 250 if (!async_data_write_receive(&call id, &len)) {250 if (!async_data_write_receive(&call, &len)) { 251 251 /* Protocol error - the sender is not sending data */ 252 252 } … … 266 266 /* Allocate the receive buffer */ 267 267 268 (void) async_data_write_finalize( callid, path, len);268 (void) async_data_write_finalize(&call, path, len); 269 269 }}} 270 270 … … 299 299 #include <async.h> 300 300 ... 301 ipc_call id_t callid;301 ipc_call_t call; 302 302 size_t len; 303 if (!async_data_read_receive(&call id, &len)) {303 if (!async_data_read_receive(&call, &len)) { 304 304 /* Protocol error - the sender is not accepting data */ 305 305 } … … 312 312 313 313 {{{ 314 (void) async_data_read_finalize( callid, dentry->data + pos, bytes);314 (void) async_data_read_finalize(&call, dentry->data + pos, bytes); 315 315 }}} 316 316 … … 357 357 #include <async.h> 358 358 ... 359 ipc_call id_t callid;359 ipc_call_t call; 360 360 size_t len; 361 361 int flags; 362 if (!async_share_out_receive(&call id, &len, &flags)) {362 if (!async_share_out_receive(&call, &len, &flags)) { 363 363 /* Protocol error - the sender is sharing out an area */ 364 364 } … … 367 367 }}} 368 368 369 After the offer is received, the server has a chance to reject it by answering ''call id'' with an error code distinct from EOK. The reason for denial can be an inappropriate ''len'' or non-suitable address space area flags in the ''flags'' variable. If the offer looks good to the server, it will accept it like this:369 After the offer is received, the server has a chance to reject it by answering ''call'' with an error code distinct from EOK. The reason for denial can be an inappropriate ''len'' or non-suitable address space area flags in the ''flags'' variable. If the offer looks good to the server, it will accept it like this: 370 370 371 371 {{{ 372 372 void *fs_va; 373 (void) async_share_out_finalize( callid, fs_va);373 (void) async_share_out_finalize(&call, fs_va); 374 374 }}} 375 375 … … 402 402 #include <async.h> 403 403 ... 404 ipc_call id_t callid;404 ipc_call_t call; 405 405 size_t size; 406 if (!async_share_in_receive(&call id, &size)) {406 if (!async_share_in_receive(&call, &size)) { 407 407 /* Protocol error - the sender is not requesting a share */ 408 408 } … … 415 415 {{{ 416 416 uint8_t *plb; 417 (void) async_share_in_finalize( callid, plb, AS_AREA_READ | AS_AREA_CACHEABLE);417 (void) async_share_in_finalize(&call, plb, AS_AREA_READ | AS_AREA_CACHEABLE); 418 418 }}} 419 419