usrwdbbp.c
来自「IXP425的BSP代码」· C语言 代码 · 共 40 行
C
40 行
/* usrWdbBp.c - configuration file for WDB agent breakpoints *//* Copyright 1984-1998 Wind River Systems, Inc. *//*modification history--------------------01a,21jul97,ms taken from 01y of usrWdb.c*//*DESCRIPTIONThis library configures and initializes the WDB agents systembreakpoint library.*//* locals */static struct brkpt wdbBreakPoints [WDB_BP_MAX];/* externals */extern VOIDFUNCPTR wdbBpSysEnterHook;extern VOIDFUNCPTR wdbBpSysExitHook;/******************************************************************************** usrWdbBp - configure and initialize the WDB agents breakpoint library**/void usrWdbBp (void) { wdbSysBpLibInit (wdbBreakPoints, WDB_BP_MAX); wdbBpSysEnterHook = wdbDbgBpRemoveAll; wdbBpSysExitHook = wdbBpInstall; }
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?