Changeset ea15a89a in mainline for boot/generic/src/memstr.c


Ignore:
Timestamp:
2013-04-29T14:26:22Z (12 years ago)
Author:
Vojtech Horky <vojtechhorky@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
533e2d7, 94dfb92
Parents:
b2fa2d86 (diff), 9e7898e (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.
Message:

Merge mainline changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • boot/generic/src/memstr.c

    rb2fa2d86 rea15a89a  
    3030#include <typedefs.h>
    3131
    32 /** Copy block of memory.
     32/** Move memory block without overlapping.
    3333 *
    34  * Copy cnt bytes from src address to dst address.The source and destination
    35  * memory areas cannot overlap.
     34 * Copy cnt bytes from src address to dst address. The source
     35 * and destination memory areas cannot overlap.
    3636 *
     37 * @param dst Destination address to copy to.
    3738 * @param src Source address to copy from.
    38  * @param dst Destination address to copy to.
    3939 * @param cnt Number of bytes to copy.
    4040 *
     
    4444void *memcpy(void *dst, const void *src, size_t cnt)
    4545{
    46         return __builtin_memcpy(dst, src, cnt);
     46        uint8_t *dp = (uint8_t *) dst;
     47        const uint8_t *sp = (uint8_t *) src;
     48       
     49        while (cnt-- != 0)
     50                *dp++ = *sp++;
     51       
     52        return dst;
    4753}
    4854
     
    6066void *memset(void *dst, int val, size_t cnt)
    6167{
    62         return __builtin_memset(dst, val, cnt);
     68        uint8_t *dp = (uint8_t *) dst;
     69       
     70        while (cnt-- != 0)
     71                *dp++ = val;
     72       
     73        return dst;
    6374}
    6475
Note: See TracChangeset for help on using the changeset viewer.