Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-05-20 | add show all pools command listing all pools as vmstat -m does; miod@ ok | Michael Shalayeff | |
2006-05-16 | fix comments | Michael Shalayeff | |
2006-03-15 | Still allow ddb.console and ddb.panic to be raised if securelevel <= 0; | Miod Vallat | |
ok deraadt@ | |||
2006-03-15 | use sysctl_int_lower (old code had the negative bug) | Theo de Raadt | |
2006-03-13 | ansi/deregister. No binary change. | Jonathan Gray | |
2006-03-09 | Do not include <lib/libkern/libkern.h> explicitely, get it via <sys/systm.h>. | Miod Vallat | |
2005-09-29 | char end[] vs long end, bad; pr 4288 | Theo de Raadt | |
2005-09-06 | Remove old m88k workaround, now that we have SET_PC_REGS(). | Miod Vallat | |
2005-05-10 | db_printf(s) -> db_printf("%s", s) from NetBSD | Uwe Stuehler | |
2005-04-19 | Do not bother looking for symbols if either esym is zero or the computed | Miod Vallat | |
symbol table length is zero. | |||
2005-04-19 | Nuke DB_NO_AOUT, and have platforms with a.out symbols explicitely provide | Miod Vallat | |
DB_AOUT_SYMBOLS. | |||
2005-01-08 | radical size reduction from andreas@ | Michael Shalayeff | |
2005-01-04 | switch to SET_PC_REGS if available, okay miod@ | Marc Espie | |
2005-01-03 | Add "show panic" command to ddb, to easily retrieve the panic message. | Miod Vallat | |
Will hopefully bring us better panic reports. From Joris Vink. | |||
2004-08-09 | mips/sgi uses same symbol table style setup as sparc64 | Per Fogelstrom | |
OK mickey@ | |||
2004-06-25 | Instead of accessing ci_dev (that's an MI field), provide a marco that | Artur Grabowski | |
translates a cpu_info structure into a human-readable cpu number. drahn@ deraadt@ ok | |||
2004-06-21 | Make 'machine ddbcpu' work, and use CPU device number instead of APIC id | Andreas Gunnarsson | |
KNF lesson and ok from niklas@ | |||
2004-06-13 | debranch SMP, have fun | Niklas Hallqvist | |
2004-04-25 | kill unbounded string op. deraadt ok | Jun-ichiro itojun Hagino | |
2004-03-15 | Remove errant semi-colon. miod@ ok | Aaron Campbell | |
2004-03-10 | Ensure that we obey a user's ddb> boot reboot command even if the system | Tom Cosgrove | |
is cold (during startup). This adds RB_USERREQ to sys/reboot.h, uses it in the ddb commands, and ensures that */*/machdep.c:boot() won't set RB_HALT when cold if this flag is set. ok deraadt@ | |||
2004-02-06 | default db.log=1. as noted by Sam Smith, this is more useful. mickey concurred | Ted Unangst | |
2004-01-03 | put an mi wrapper around stdarg.h/varargs.h. gcc3 moved stdarg/varargs macros | Marc Espie | |
to built-ins, so eventually we will have one version of these files. Special adjustments for the kernel to cope: machine/stdarg.h -> sys/stdarg.h and machine/ansi.h needs to have a _BSD_VA_LIST_ for syslog* prototypes. okay millert@, drahn@, miod@. | |||
2003-12-03 | add dmesg command; ok deraadt, mcbride, henning and more | Markus Friedl | |
2003-08-24 | sprinkle some __kprintf__ attributes around functions which use format | Anil Madhavapeddy | |
strings in the kernel to make gcc aware of the extra modifiers deraadt@ ok | |||
2003-07-08 | better output length estimate for a nicer printout | Michael Shalayeff | |
2003-06-28 | option to log ddb output to kernel message buffer, via sysctl ddb.log | Ted Unangst | |
ok deraadt@ henric@ djm@ | |||
2003-06-02 | Remove the advertising clause in the UCB license which Berkeley | Todd C. Miller | |
rescinded 22 July 1999. Proofed by myself and Theo. | |||
2003-06-02 | kill the clauses three and four on my sources | Michael Shalayeff | |
2003-06-01 | When searching for the symbol table and string table we were looking | Artur Grabowski | |
for ".symtab" and ".strtab" in the section names. Instead of doing that, look for section type SHT_SYMTAB for the symbol table and follow the link in sh_link to find the corresponding string table. This is a more correct way of doing things and will work better when the toolchain doesn't generate ".symtab" and ".strtab" names and it will work when there are multiple symbol tables. noone objected to this diff for at least a week. | |||
2003-05-12 | sho proc [addr] to print some proc's field; art@ ok | Michael Shalayeff | |
2003-02-12 | Remove commons; inspired by netbsd. | Jason Wright | |
2002-07-10 | It is supposed to be printf, not db_printf. This change costed me | Artur Grabowski | |
several days of debugging my laptop because underneath the X it was sitting on the console waiting for me to press some key on the '--db_more--' prompt. | |||
2002-07-01 | Don't let variable declarations without "extern" living in .h files. | Miod Vallat | |
While there fix a benign type mismatch in db_stack_dump() and remove diag code left by art by mistake. | |||
2002-06-14 | 992 bytes. Also works if random function returns 0 first time. | Marcus Watts | |
2002-06-11 | Saves 4 bytes of filespace | Marcus Watts | |
2002-06-11 | can't call arc4random() before timeouts are enabled, use random() if cold. | Jason Wright | |
2002-05-18 | Implement db_stack_dump - a function that will print a stack | Artur Grabowski | |
trace with printf (to the console and into the msgbuf). | |||
2002-05-18 | Rename the MD db_stack_trace_cmd to db_stack_trace_print. Add an argument | Artur Grabowski | |
that specifies which printf funciton it should use. Implement db_stack_trace_cmd in MI code. Thanks to miod@ for all the tests. | |||
2002-05-16 | Add a an argument to db_printsym that specifies the printf function | Artur Grabowski | |
we'll use for printing the information. miod@ ok | |||
2002-05-14 | Use db_format in db_printsym (we'll want to be able to use printf in it soon). | Artur Grabowski | |
2002-05-14 | db_printf has three non-standard formats that are not supported by | Artur Grabowski | |
printf. Since we want to be able to have some ddb functions use db_printf or normal printf, provide a new way to acheive the same kind of formatting. The new function is called db_format and can emulate all variations of how the nonstandard db_printf formats are used. Note that this doesn't (yet?) mean that we want to convert all the non-standard formats, we just want to have that option. miod@ ok. | |||
2002-05-13 | minor knf. | Artur Grabowski | |
2002-03-14 | Final __P removal plus some cosmetic fixups | Todd C. Miller | |
2002-03-14 | First round of __P removal in sys | Todd C. Miller | |
2002-02-27 | don't execute the pmap_update() call if we have no watch list. bo-bo art :-) | Per Fogelstrom | |
2002-01-28 | Add "boot reboot" to please jason@ and "boot poweroff" to please drahn@. | Miod Vallat | |
2002-01-02 | Add more vocabulary (commands) to ddb, from NetBSD. | Miod Vallat | |
ok art@ (manual page update coming soon) | |||
2001-12-08 | Sprinkle pmap_update calls where relevant and some other | Artur Grabowski | |
misc pmap usage fixes. | |||
2001-11-28 | zap some typedefs. | Artur Grabowski | |
vm_map_t -> struct vm_map * vm_map_entry_t -> struct vm_map_entry * simple_lock_data_t -> struct simplelock (uvm not done yet, coming in the next commit) |