aboutsummaryrefslogtreecommitdiff
path: root/sys/ddb
Commit message (Expand)AuthorAgeFilesLines
* sys/ddb: Add hardware breakpoint support to ddbAndrew Turner2024-04-123-8/+99
* ddb: Start to generalise breakpointsAndrew Turner2024-04-121-35/+57
* ddb: Fix format string errors in db_pprint.cMark Johnston2024-04-031-2/+2
* ddb: Don't throw away qualifier when pretty-printing unnamed pointersBojan Novković2024-04-031-1/+1
* ddb: Properly pretty-print non-labeled enum valuesBojan Novković2024-04-031-5/+6
* ddb: Drop obsolete -FreeBSD identifier from licenseBojan Novković2024-03-283-3/+3
* ddb: Fix format string errors in db_pprint.cMark Johnston2024-03-221-6/+6
* ddb: Add CTF-based pretty printingBojan Novković2024-03-225-0/+842
* ddb: Fix typo (triple S)Jose Luis Duran2023-12-281-1/+1
* sys: Automated cleanup of cdefs and other formattingWarner Losh2023-11-2715-15/+0
* ddb: Add sysctl flag CTLFLAG_TUN to loader tunableZhenlei Huang2023-10-091-2/+2
* sys: Remove $FreeBSD$: one-line .c patternWarner Losh2023-08-1620-40/+0
* sys: Remove $FreeBSD$: two-line .h patternWarner Losh2023-08-169-18/+0
* ddb: Rework macros to make it easier to add new command tables.John Baldwin2023-07-051-36/+60
* spdx: The BSD-2-Clause-FreeBSD identifier is obsolete, drop -FreeBSDWarner Losh2023-05-124-4/+4
* ddb: ansifyMateusz Guzik2023-02-081-14/+5
* Move kstack_contains() and GET_STACK_USAGE() to MD machine/stack.hKonstantin Belousov2023-02-011-0/+2
* ddb: have 'reset' command use normal reboot pathMitchell Horne2023-01-231-1/+13
* ddb: Don't flag breakpoint/watchpoint commands as MEMSAFEMark Johnston2022-11-021-8/+8
* ddb: print the actual syscall nameMitchell Horne2022-10-282-14/+6
* Fix kernel build after 754cb545b68ba0a1643792763d000018ffe2afec .Hans Petter Selasky2022-10-041-0/+1
* db_sym.c: restore sys/systm.h includeMitchell Horne2022-10-031-0/+1
* ddb: de-duplicate decode_syscall()Mitchell Horne2022-10-032-1/+25
* Adjust db_flush_line() definition to avoid clang 15 warningDimitry Andric2022-07-191-1/+1
* mac: add new mac_ddb(4) policyMitchell Horne2022-07-181-0/+1
* mac: kdb/ddb framework hooksMitchell Horne2022-07-182-0/+19
* ddb: tag core commands with DB_CMD_MEMSAFEMitchell Horne2022-07-181-39/+39
* ddb: annotate some commands with DB_CMD_MEMSAFEMitchell Horne2022-07-182-2/+2
* ddb: add the DB_CMD_MEMSAFE flag for commandsMitchell Horne2022-07-181-6/+10
* ddb: add _FLAGS command variantsMitchell Horne2022-07-051-4/+12
* db_command.c: use designated initializersMitchell Horne2022-07-051-57/+70
* db_command.c: styleMitchell Horne2022-07-051-153/+141
* ddb: namespacing of struct commandMitchell Horne2022-06-142-39/+42
* kerneldump: remove physical from dump routinesMitchell Horne2022-05-131-2/+2
* ddb: Remove SOFTWARE_SSTEP supportWarner Losh2022-01-073-149/+0
* sys/ddb: Use C99 fixed-width integer types.John Baldwin2021-12-281-1/+1
* Create sys/reg.h for the common code previously in machine/reg.hAndrew Turner2021-08-301-0/+1
* fix style nit: space after ifWarner Losh2021-05-051-2/+2
* ddb: replace watchpoint set/clear functionsMitchell Horne2021-03-292-18/+43
* ddb: enable the use of ^C and ^S/^QRyan Libby2021-03-143-24/+105
* ddb: just move cursor when the lexer backs upRyan Libby2021-02-241-11/+16
* ddb: reliably fail with ambiguous commandsRyan Libby2021-02-241-1/+1
* Use atomic loads/stores when updating td->td_stateAlex Richardson2021-02-182-7/+7
* ddb: add ability to print user registersmhorne2021-01-081-1/+23
* ddb: Display process flags (p_flag and p_flag2) in 'show proc'.John Baldwin2021-01-011-0/+2
* Use kdb_thr_* to iterate over threads consistently in DDB.John Baldwin2021-01-012-26/+22
* Use kdb_thr_from_pid() in db_lookup_thread().John Baldwin2021-01-011-5/+3
* Don't check P_INMEM in kdb_thr_*().John Baldwin2021-01-012-3/+9
* ddb ps: Use the pidhash to enumerate processes not in allproc.John Baldwin2021-01-011-8/+6
* Add a kstack_contains() helper function.John Baldwin2020-12-011-2/+1