📄 um_malloc.h
字号:
/* * Copyright (C) 2005 Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it> * Licensed under the GPL */#ifndef __UM_MALLOC_H__#define __UM_MALLOC_H__#include "kern_constants.h"extern void *__kmalloc(int size, int flags);static inline void *kmalloc(int size, int flags){ return __kmalloc(size, flags);}extern void kfree(const void *ptr);extern void *vmalloc(unsigned long size);extern void vfree(void *ptr);#endif /* __UM_MALLOC_H__ */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -