Changeset f58af46 in mainline for generic/src/syscall/copy.c
- Timestamp:
- 2006-05-05T15:14:34Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- c6c59ccd
- Parents:
- e8194664
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
generic/src/syscall/copy.c
re8194664 rf58af46 55 55 * @return 0 on success or error code from @ref errno.h. 56 56 */ 57 int copy_from_uspace(void *dst, void *uspace_src, size_t size)57 int copy_from_uspace(void *dst, const void *uspace_src, size_t size) 58 58 { 59 59 ipl_t ipl; … … 96 96 * @return 0 on success or error code from @ref errno.h. 97 97 */ 98 int copy_to_uspace(void *uspace_dst, void *src, size_t size)98 int copy_to_uspace(void *uspace_dst, const void *src, size_t size) 99 99 { 100 100 ipl_t ipl;
Note:
See TracChangeset
for help on using the changeset viewer.