Function report

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:kernel\debug\kdb\kdb_bp.c Create Date:2022-07-28 11:44:09
Last Modify:2020-03-12 14:18:49 Copyright©Brick
home page Tree
Annotation kernel can get tool activityDownload SCCTChinese

Name:kdb_printbp* Internal function to format and print a breakpoint entry.* Parameters:* None.* Outputs:* None.* Returns:* None.* Locking:* None.* Remarks:

Proto:static void kdb_printbp(kdb_bp_t *bp, int i)

Type:void

Parameter:

TypeParameterName
kdb_bp_t *bp
inti
240  kdb_printf("%s ", kdb_bptype(bp))
241  kdb_printf("BP #%d at ", i)
242  kdb_symbol_print - Standard method for printing a symbol name and offset
244  If Breakpoint is active in register Then kdb_printf("\n is enabled ")
246  Else kdb_printf("\n is disabled")
249  kdb_printf(" addr at %016lx, hardtype=%d installed=%d\n", Address breakpoint is present at , Uses hardware register , Breakpoint is installed )
252  kdb_printf("\n")
Caller
NameDescribe
kdb_bpkdb_bp* Handle the bp commands