summaryrefslogtreecommitdiffstats
path: root/sys/ddb (follow)
Commit message (Expand)AuthorAgeFilesLines
* Stop requiring that .strtab has long alignment.gkoehler2020-05-261-3/+2
* Separate the stack trace saving interface from ddb. The saving does notvisa2020-01-202-13/+4
* If the kernel panics due to SMEP or SMAP, print correct stack tracebluhm2020-01-091-3/+5
* Default to 0 arguments if no symbol has been found in the CTF section.mpi2019-11-121-2/+2
* db_addr_t -> vaddr_tmpi2019-11-0717-73/+72
* FALSE -> 0, missed in previous.mpi2019-11-071-2/+2
* Substitute boolean_t/TRUE/FALSE by int/1/0.mpi2019-11-0610-128/+122
* Get rid of `ddb_is_active' instead use `db_active'.mpi2019-07-202-5/+2
* Fix ddb not to write its history to out of the region. When theyasuoka2019-04-021-1/+3
* remove prototype from earlier version of reboot code. spotted by antontedu2019-04-011-2/+1
* fast track ddb> reboot command to skip anything which might panic again.tedu2019-04-011-2/+3
* zap trailing empty lineanton2019-02-151-2/+1
* The underlying storage for builtin ddb variables are of type int butanton2019-02-151-2/+2
* Printing hex values with right adjustment makes it easier to comparebluhm2019-01-091-2/+2
* whitespace fix; no binary changeanton2018-09-181-2/+2
* Pass the correct size to free(9) in the error path of db_ctf_decompress().bluhm2018-08-311-2/+2
* Make the print function of db_print_stack_trace() configurable,visa2018-05-072-7/+9
* Do not truncate 64bit integers when pretty-printing types.mpi2018-01-091-2/+16
* Show uvm_fault and trace when typing show panic on a page fault'd kernelpirofti2018-01-051-1/+7
* Add 'bt' an alias for 'trace'.mpi2017-12-131-1/+2
* In uvm Chuck decided backing store would not be allocated proactivelyderaadt2017-12-111-7/+16
* Remove MALLOC_DEBUG left overs.mpi2017-11-271-10/+1
* remove ctf_type declaration no longer needed since -r1.33jasper2017-11-061-2/+0
* Remove forward declaration hack now that ctfconv(1) merge them correctly.mpi2017-11-011-8/+1
* Use <elf.h> in !_KERNEL code path.mpi2017-10-271-2/+2
* ddb "show all mounts" showed everything except the address of thebluhm2017-10-191-2/+4
* return a missing return (was left out of previous)jasper2017-10-131-1/+2
* - use db_printf()jasper2017-10-131-2/+7
* missing prototype for db_ctf_pprintjasper2017-10-111-1/+2
* New ddb(4) command: kill.mpi2017-09-292-2/+4
* Remove option DDB_STRUCTINFO. Now that ddb(4) is CTF aware, similarmpi2017-09-124-777/+1
* Skip forward declarations until ctfconv(1) properly merge them withmpi2017-09-121-1/+8
* If you use sys/param.h, you don't need sys/types.hderaadt2017-09-084-10/+6
* use sizeof(variable) instead of sizeof(type) to shorten some codedlg2017-09-061-2/+2
* when pretty printing a pointer, display its value instead of address.dlg2017-09-061-2/+6
* replace the DDB_STRUCT backend for "show struct" with ctf code.dlg2017-09-063-7/+92
* db_ctf_pprintf() doesn't actually support formatting, so s/f$//uwe2017-08-141-6/+6
* Restore "print" in ddb; add "pp[rint]" for pretty-printinguwe2017-08-142-5/+6
* Merge DDBCTF into DDB.mpi2017-08-112-7/+1
* Fall back using db_print_cmd() if no CTF data has been found.mpi2017-08-111-8/+7
* Improve pretty printing of pointers.mpi2017-08-111-7/+39
* Kernel compilation with DDBPROF enabled fails as db_sym_t is no longernayden2017-08-111-4/+4
* Remove debugging leftovers, document functions, bump copyright.mpi2017-08-111-27/+11
* With a CTF kernel, DDB's print command will now pretty-print symbols.mpi2017-08-105-45/+319
* Goodbye, sys/dkbad.h, you lost your last friend when sparc was removed.zhuk2017-07-291-2/+1
* Header sys/scanio.h has been deleted, do not include it here.bluhm2017-05-301-2/+1
* Kill db_sym_t.mpi2017-05-305-30/+24
* Pass the symbol instead of its name when looking for CTF infos.mpi2017-05-293-12/+15
* If a function is not found in the CTF data, do not assume it takes nompi2017-05-281-3/+3
* Merge two functions to lookup ELF sections by name.mpi2017-05-283-37/+12