Changeset b678410 in mainline for uspace/lib/c/generic/async.c
- Timestamp:
- 2011-04-27T20:01:13Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a6dffb8
- Parents:
- 628d548 (diff), 933cadf (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/generic/async.c
r628d548 rb678410 102 102 #include <arch/barrier.h> 103 103 #include <bool.h> 104 #include <stdlib.h> 105 #include <malloc.h> 104 106 #include "private/async.h" 105 107 … … 1572 1574 * @param dst Address of the beginning of the destination buffer. 1573 1575 * @param size Size of the destination buffer. 1576 * @param flags Flags to control the data transfer. 1574 1577 * 1575 1578 * @return Zero on success or a negative error code from errno.h. 1576 1579 * 1577 1580 */ 1578 int async_data_read_start(int phoneid, void *dst, size_t size) 1579 { 1580 return async_req_2_0(phoneid, IPC_M_DATA_READ, (sysarg_t) dst, 1581 (sysarg_t) size); 1581 int 1582 async_data_read_start_generic(int phoneid, void *dst, size_t size, int flags) 1583 { 1584 return async_req_3_0(phoneid, IPC_M_DATA_READ, (sysarg_t) dst, 1585 (sysarg_t) size, (sysarg_t) flags); 1582 1586 } 1583 1587 … … 1669 1673 * @param src Address of the beginning of the source buffer. 1670 1674 * @param size Size of the source buffer. 1675 * @param flags Flags to control the data transfer. 1671 1676 * 1672 1677 * @return Zero on success or a negative error code from errno.h. 1673 1678 * 1674 1679 */ 1675 int async_data_write_start(int phoneid, const void *src, size_t size) 1676 { 1677 return async_req_2_0(phoneid, IPC_M_DATA_WRITE, (sysarg_t) src, 1678 (sysarg_t) size); 1680 int 1681 async_data_write_start_generic(int phoneid, const void *src, size_t size, 1682 int flags) 1683 { 1684 return async_req_3_0(phoneid, IPC_M_DATA_WRITE, (sysarg_t) src, 1685 (sysarg_t) size, (sysarg_t) flags); 1679 1686 } 1680 1687
Note:
See TracChangeset
for help on using the changeset viewer.