summaryrefslogtreecommitdiff
path: root/sys/ddb
AgeCommit message (Collapse)Author
2001-09-19merge vm/vm_kern.h into uvm/uvm_extern.h; art@ okMichael Shalayeff
2001-08-19shorterArtur Grabowski
2001-08-19Needed a simple cast after a sparc64 change.Mike Frantzen
2001-08-19Ugly hack to make symbols work on sparc64.Artur Grabowski
We really need to change ddb_init to take args from MD code.
2001-08-19Print a reason for failing to init the symbol table.Artur Grabowski
2001-08-19shorten the message to fit on a line.Artur Grabowski
2001-08-18I am sick and tired of bug reports LACKING INFORMATION.Artur Grabowski
2001-07-04Make preprocessor happier, don't give it untasty tokens at end of input.Marc Espie
Ok millert@
2001-07-04missed EOL at EOFMarc Espie
2001-06-29print the total score, size permittingMichael Shalayeff
2001-06-29cleanup, including removing the size rule which nobodyMichael Shalayeff
gives a shit about anyway.
2001-06-27Remove old vm.Artur Grabowski
2001-04-18New boot command: boot halt.Artur Grabowski
Don't sync, don't dump, just halt.
2001-04-05Tell the users what to report when the kernel crashes.Artur Grabowski
2001-03-15$OpenBSD$Niklas Hallqvist
2001-02-10When computing the value of an entry in the string table, don'tTodd C. Miller
just add strtab to s->n_un.n_strx since we may have multiple string tables (for instance in the case of lkms). Instead, add in t->end whcih in a.out will be the start of the string table for this symtab. OK'd by niklas@
2001-02-10new symbol handling in ddb for ELF, there is still a problem with hangman on ↵Niklas Hallqvist
alpha though..
2001-02-08Capital punishment, just in case :-)Niklas Hallqvist
2001-02-06Allow booting on alphas with DDB, although no symbols will be seen.Niklas Hallqvist
2001-01-24KGDB for i386 from NetBSD via niklas, with tweaks and accommodations.Hugh Graham
Tested by various, vetted by mickey & theo.
2000-06-07Allow passing an address to 'show malloc' and print out some information aboutArtur Grabowski
that address.
2000-06-07Add 'show malloc' that prints out malloc debugging information if available.Artur Grabowski
2000-04-05do not exhaust the random pool while debuggingMichael Shalayeff
2000-02-27Provide a means to lock ddb off on systems at high securelevel, in orderHugh Graham
reduce the need for a custom kernel sans ddb.
1999-09-11s/vm_offset_t/vaddr_t/ s/vm_size_t/vsize_t/Michael Shalayeff
1999-06-17fix continuing from breakpoints on sparcArtur Grabowski
1999-02-26uvm compatArtur Grabowski
1998-12-20The "end" symbol should be a long, not an int to make 64-bit machines happy. ↵Todd C. Miller
This allows us to remove a bogus cast of int * to long * later on.
1998-09-01the sync command does not work, back it outArtur Grabowski
1998-08-30add a sync command that does not rebootArtur Grabowski
1998-08-21Don't make symbols strings absolute in the symbol table so we can share it ↵Todd C. Miller
with /dev/ksyms
1998-04-26correct copyrightTheo de Raadt
1998-03-16Add the option SOFTWARE_SSTEP_EMUL. This is used with mips processorsPer Fogelstrom
together with SOFTWARE_SSTEP to do single stepping. We don't need the dual BP at branch since we always evaluate the correct next location.
1998-02-25Add command to print out extents. This helps in debugging PnP stuff,Tobias Weingartner
and "it's just plain cool".
1998-02-05rename ddb.panic_ddb, and add ddb.console. Now you can stop console ddb entryTheo de Raadt
with a sysctl. There will be architectures and drivers that lack function, and I trust the maintainers of those will forget to add the code..
1997-12-29sysctl ddb.panic_ddb; felix@mamba.pond.sub.orgTheo de Raadt
1997-11-04db_output.c: kill db_ksprintn, db_printf_guts, kdbprintf, db_printf.chuck
db_printf moves to kern/subr_prf.c and uses the new kprintf located there. db_output.h: kill kdbprintf [use db_printf]
1997-09-08put 'help' in front of 'hangman'Theo de Raadt
1997-09-08KNFTheo de Raadt
1997-09-06fix #endif; David.Sainty@MCS.VUW.AC.NZTheo de Raadt
1997-08-07slight KNFNiklas Hallqvist
1997-08-07document needed MD funcs for SOFTWARE_SSTEP betterNiklas Hallqvist
1997-07-23typoNiklas Hallqvist
1997-07-23Support an DB_VALID_BREAKPOINT option for validation of breakpoints.Niklas Hallqvist
This can be very important in SOFTWARE_SSTEP systems as single stepping otherwise frequently hoses the machine when trying to step through paths used ny DDB itself.
1997-07-19Include vm/vm.h everywhere it is needed to get at boolean_t (I would preferNiklas Hallqvist
to have it in sys/types.h but that is problematic). Some KNF.
1997-07-19Make SOFTWARE_SSTEP compile with strict prototypingNiklas Hallqvist
1997-07-19SOFTWARE_SSTEP bugs fixed. KNF. register specs removed. Include vm.hNiklas Hallqvist
1997-07-08remove register, move strx decl, and change it to long as it is meant to takeNiklas Hallqvist
an addr which cannot fit in an int
1997-07-08Let the count of symbols be long, so the nlist array will get properNiklas Hallqvist
alignment everywhere.
1997-07-07Do not wrap lines so often, much prettier x outputNiklas Hallqvist