Changeset 9db5b66 in mainline for include/memstr.h


Ignore:
Timestamp:
2005-05-11T00:14:42Z (19 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 edited

Legend:

Unmodified
Added
Removed
  • include/memstr.h

    r79f1f38f r9db5b66  
    3939extern int memcmp(__address src, __address dst, int cnt);
    4040
     41/*
     42 * Architecture independent variants.
     43 */
     44extern void _memcopy(__address src, __address dst, int cnt);
     45extern void _memsetb(__address dst, int cnt, __u8 x);
     46
    4147#endif
Note: See TracChangeset for help on using the changeset viewer.