RTEMS 5.2
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
slab.h
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 kvfree(x) free(x)
12#define vmalloc(x) malloc(x)
13#define vfree(x) free(x)
14
15#endif /* __LINUX_SLAB_H__ */
16