Changeset 9db5b66 in mainline for src/lib/memstr.c


Ignore:
Timestamp:
2005-05-11T00:14:42Z (20 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
00a44bc
Parents:
79f1f38f
Message:

Move architecture independent memcopy() and memsetb() out of MIPS subtree and place them in src/lib/ as _memcopy() and _memsetb().
Add MIPS native memsetb().
Add IA-64 native memcpy().

More complete and *almost* functional versions of IA-64 context_save() and context_restore().

File:
1 moved

Legend:

Unmodified
Added
Removed
  • src/lib/memstr.c

    r79f1f38f r9db5b66  
    3030#include <arch/types.h>
    3131
    32 void memcopy(__address src, __address dst, int cnt)
     32void _memcopy(__address src, __address dst, int cnt)
    3333{
    3434        int i;
     
    3838}
    3939
    40 void memsetb(__address dst, int cnt, __u8 x)
     40void _memsetb(__address dst, int cnt, __u8 x)
    4141{
    4242        int i;
Note: See TracChangeset for help on using the changeset viewer.