fbdbg.h

来自「Lido PXA270平台开发板的最新BSP,包括源代码」· C头文件 代码 · 共 61 行

H
61
字号
/*******************************************************************************
* 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 + =
减小字号Ctrl + -
显示快捷键?