]> git.saurik.com Git - apple/xnu.git/blame_incremental - bsd/dev/i386/memmove.c
xnu-344.49.tar.gz
[apple/xnu.git] / bsd / dev / i386 / memmove.c
... / ...
CommitLineData
1/*
2 * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
3 *
4 * @APPLE_LICENSE_HEADER_START@
5 *
6 * Copyright (c) 1999-2003 Apple Computer, Inc. All Rights Reserved.
7 *
8 * This file contains Original Code and/or Modifications of Original Code
9 * as defined in and that are subject to the Apple Public Source License
10 * Version 2.0 (the 'License'). You may not use this file except in
11 * compliance with the License. Please obtain a copy of the License at
12 * http://www.opensource.apple.com/apsl/ and read it before using this
13 * file.
14 *
15 * The Original Code and all software distributed under the License are
16 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
17 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
18 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
20 * Please see the License for the specific language governing rights and
21 * limitations under the License.
22 *
23 * @APPLE_LICENSE_HEADER_END@
24 */
25/* Copyright (c) 1991,1993 NeXT Computer, Inc. All rights reserved.
26 *
27 * File: machdep/ppc/libc/memmove.c
28 * History:
29 *
30 * Fixed sleep integration problem. sleep was not properly
31 * handling thread states of THREAD_INTERRUPTED and
32 * THREAD_MUST_TERMINATE, so callers of sleep were getting
33 * confused and many times looping. This fixes the (in)famous
34 * unkillable gdb problem, the PB (and other processes) don't
35 * terminate, and more. Removed debugging kprintf left in
36 * bcopy code
37 *
38 */
39
40
41
42#if 0
43void *memcpy(void *dst, const void *src, unsigned int ulen)
44{
45 bcopy(src, dst, ulen);
46 return dst;
47}
48#endif /* 0 */
49void *memmove(void *dst, const void *src, unsigned int ulen)
50{
51 bcopy(src, dst, ulen);
52 return dst;
53}
54
55