Functionsยง
- __
memcpy_ ๐ โfallible - Copies
size
bytes fromsrc
todst
. This function works with exception handling and can recover from page fault. Returns number of bytes that failed to copy. - __
memset_ ๐ โfallible - Fills
size
bytes in the memory pointed to bydst
with the valuevalue
. This function works with exception handling and can recover from page fault. Returns number of bytes that failed to set.