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

📄 fbdbg.h

📁 Lido PXA270平台开发板的最新BSP,包括源代码
💻 H
字号:
/*******************************************************************************
* Name         : fbdbg.h
* Title        : FB management debug functions header
* Author       : Mike Brassington
* Created      : 6th June 2002
*
* Copyright    : 2002 by Imagination Technologies Limited.
*                All rights reserved.  No part of this software, either
*                material or conceptual may be copied or distributed,
*                transmitted, transcribed, stored in a retrieval system 
*                or translated into any human or computer language in any
*                form by any means, electronic, mechanical, manual or
*                other-wise, or disclosed to third parties without the
*                express written permission of Imagination Technologies
*                Limited, Unit 8, HomePark Industrial Estate, 
*                King's Langley, Hertfordshire, WD4 8LZ, U.K.
*
* Description  : Header of FB management functions only used for a debug build
*
* Platform     : Generic
*
* Modifications:-
* $Log: fbdbg.h $
*
*  --- Revision Logs Removed --- 
*
*  --- Revision Logs Removed --- 
*
*  --- Revision Logs Removed --- 
*
*  --- Revision Logs Removed --- 
*******************************************************************************/
#if !defined(__FBDBG_H__)
#define __FBDBG_H__

#include "debug.h"
#include "hostfunc.h"


#define DBGALLOC_FB_DBGLEV_NONE			0
#define DBGALLOC_FB_DBGLEV_FILL			1
#define DBGALLOC_FB_DBGLEV_STRUCTURE	2
#define DBGALLOC_FB_DBGLEV_CORRUPTION	3


#define READ_PHYS_MEMBLK(addr, ptr, strct) ptr=(PPHYS_MEMBLK)addr;
#define READ_HEAP(addr, ptr, strct) ptr=(PHEAP)addr;


#define DPF_NEWLINE


void CheckHeapStructure(PHEAP psHeap, BOOL bPrintHeap, BOOL bPrintPhys);

extern DWORD	g_dwFBAllocDbgLevel;

#endif /* __FBDBG_H__ */
/*****************************************************************************
 End of file (FBDBG.H)
*****************************************************************************/

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -