]> git.saurik.com Git - apple/xnu.git/blame - osfmk/prng/YarrowCoreLib/port/smf.c
xnu-4570.71.2.tar.gz
[apple/xnu.git] / osfmk / prng / YarrowCoreLib / port / smf.c
CommitLineData
1c79356b 1/*
fe8ab488 2 * Copyright (c) 1999-2013 Apple Inc. All rights reserved.
5d5c5d0d 3 *
2d21ac55 4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
1c79356b 5 *
2d21ac55
A
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. The rights granted to you under the License
10 * may not be used to create, or enable the creation or redistribution of,
11 * unlawful or unlicensed copies of an Apple operating system, or to
12 * circumvent, violate, or enable the circumvention or violation of, any
13 * terms of an Apple operating system software license agreement.
8f6c56a5 14 *
2d21ac55
A
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
17 *
18 * The Original Code and all software distributed under the License are
19 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
8f6c56a5
A
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
2d21ac55
A
22 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23 * Please see the License for the specific language governing rights and
24 * limitations under the License.
8f6c56a5 25 *
2d21ac55 26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
1c79356b 27 */
0b4e3aa0 28
1c79356b 29/*
0b4e3aa0 30 File: smf.c
1c79356b 31
0b4e3aa0
A
32 Contains: platform-dependent malloc/free
33
34*/
1c79356b 35
fe8ab488
A
36#include <prng/YarrowCoreLib/src/smf.h>
37#include <kern/kalloc.h>
38#include <stddef.h>
1c79356b 39
fe8ab488
A
40/* Shim emulating _MALLOC */
41
91447636 42SMFAPI void mmInit( void )
0b4e3aa0 43{
91447636 44 return;
0b4e3aa0 45}
1c79356b 46
0b4e3aa0 47SMFAPI MMPTR mmMalloc(DWORD request)
1c79356b 48{
39037602
A
49 void *addr;
50
51 addr = (void *) kalloc(request);
52 if (addr == NULL)
fe8ab488 53 return NULL;
0b4e3aa0 54
39037602 55 return (MMPTR) addr;
0b4e3aa0 56}
1c79356b 57
0b4e3aa0 58SMFAPI void mmFree(MMPTR ptrnum)
1c79356b 59{
39037602 60 kfree_addr(ptrnum);
0b4e3aa0 61}
1c79356b 62
0b4e3aa0
A
63SMFAPI LPVOID mmGetPtr(MMPTR ptrnum)
64{
65 return (LPVOID)ptrnum;
66}
1c79356b 67
91447636 68SMFAPI void mmReturnPtr(__unused MMPTR ptrnum)
0b4e3aa0
A
69{
70 /* nothing */
91447636 71 return;
1c79356b 72}
1c79356b 73