RTEMS CPU Kit with SuperCore
4.11.2
mnt
data0
chrisj
rtems
releases
rtems-release.git
4.11.2
ws-rtems
rtems-4.11.2
cpukit
libfs
src
jffs2
include
linux
slab.h
Go to the documentation of this file.
1
#ifndef __LINUX_SLAB_H__
2
#define __LINUX_SLAB_H__
3
4
#include <stdlib.h>
5
6
#include <
asm/page.h
>
7
8
#define kzalloc(x, y) calloc(1, x)
9
#define kmalloc(x, y) malloc(x)
10
#define kfree(x) free(x)
11
#define vmalloc(x) malloc(x)
12
#define vfree(x) free(x)
13
14
#endif
/* __LINUX_SLAB_H__ */
15
page.h
Generated by
1.8.13