def_kmalloc.h
来自「小型操作系统,以VC为开发环境,需要boachs调试」· C头文件 代码 · 共 32 行
H
32 行
/***************************************************************************
** File name : def_kmalloc.h
** Author : x.cheng
** Create date :
**
** Comments:
** 虚拟内存管理的常量和函数声明
**
** Revisions:
** $Log: def_kmalloc.h,v $
** Revision 1.1.1.1 2005/07/27 06:53:16 x.cheng
** add into repositories
**
**
***************************************************************************/
#ifndef __DEF_KMALLOC_H__
#define __DEF_KMALLOC_H__
#include "def_vmm.h"
/************ function prototype ******************/
/*******in file vm1_kmalloc.c**************/
//#ifndef __VMM_SRC__
void *pvVm1KeMalloc(unsigned long ulSize, int iFlag);
void vVm1KeFree(void *pvPtr);
void *pvVm1KeAlignMalloc(unsigned long ulAlign, unsigned long ulSize, int iFlags);
void vVm1KeMallocInit();
void Vm1KeDumpHeapStatus(void);
#endif /* end of __DEF_KMALLOC_H__ */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?