⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 def_kmalloc.h

📁 小型操作系统,以VC为开发环境,需要boachs调试
💻 H
字号:
/***************************************************************************
**     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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -