|
Linux Kernel
3.7.1
|
#include <linux/kernel.h>#include <linux/fs.h>#include <linux/string.h>#include <linux/slab.h>#include <linux/vmalloc.h>#include <linux/init.h>Go to the source code of this file.
Macros | |
| #define | malloc(a) kmalloc(a, GFP_KERNEL) |
| #define | free(a) kfree(a) |
| #define | large_malloc(a) vmalloc(a) |
| #define | large_free(a) vfree(a) |
| #define | INIT __init |
| #define | STATIC |
1.8.2