📄 usrwdbbp.c
字号:
/* 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -