blob: 4fa063f03a73bc38882d19001eb528612c53b888 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
/******************************************************************************
* Bjoern Doebel <doebel@tudos.org> *
* *
* (c) 2005 - 2007 Technische Universitaet Dresden *
* This file is part of DROPS, which is distributed under the terms of the *
* GNU General Public License 2. Please see the COPYING file for details. *
******************************************************************************/
/*
* \brief vmalloc implementation
* \author Bjoern Doebel
* \date 2007-07-30
*/
/* Linux */
#include <linux/vmalloc.h>
#include "local.h"
void *vmalloc(unsigned long size)
{
return ddekit_simple_malloc(size);
}
void vfree(const void *addr)
{
ddekit_simple_free((void*)addr);
}
|