Changeset a39cfb8 in mainline for uspace/lib/c/include/async.h
- Timestamp:
- 2011-04-14T07:54:33Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e05d6c3
- Parents:
- 3f3afb9 (diff), 34e8bab (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/async.h
r3f3afb9 ra39cfb8 341 341 342 342 extern aid_t async_data_read(int, void *, size_t, ipc_call_t *); 343 extern int async_data_read_start(int, void *, size_t); 343 #define async_data_read_start(p, buf, len) \ 344 async_data_read_start_generic((p), (buf), (len), IPC_XF_NONE) 345 346 extern int async_data_read_start_generic(int, void *, size_t, int); 344 347 extern bool async_data_read_receive(ipc_callid_t *, size_t *); 345 348 extern int async_data_read_finalize(ipc_callid_t, const void *, size_t); … … 380 383 (arg4), (answer)) 381 384 382 extern int async_data_write_start(int, const void *, size_t); 385 #define async_data_write_start(p, buf, len) \ 386 async_data_write_start_generic((p), (buf), (len), IPC_XF_NONE) 387 388 extern int async_data_write_start_generic(int, const void *, size_t, int); 383 389 extern bool async_data_write_receive(ipc_callid_t *, size_t *); 384 390 extern int async_data_write_finalize(ipc_callid_t, void *, size_t);
Note:
See TracChangeset
for help on using the changeset viewer.