aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/subr_prf.c
Commit message (Expand)AuthorAgeFilesLines
* o Introduce kern.security.bsd.unprivileged_read_msgbuf, which allowsRobert Watson2001-11-301-0/+13
* Properly sanity-check the old msgbuf structure before we accept itIan Dowse2001-11-091-3/+6
* KSE Milestone 2Julian Elischer2001-09-121-2/+3
* Make the code to read the kernel message buffer via sysctl machine-Thomas Moestl2001-07-031-0/+45
* Use PCPU_GET, PCPU_PTR and PCPU_SET to access all per-cpu variablesJake Burkholder2001-01-101-1/+1
* Make sure we have a non-null proc pointer before referring to fieldsMatt Jacob2000-12-231-1/+1
* A last minute brucification resulted in syntax errors in the previous commit.Poul-Henning Kamp2000-12-201-4/+4
* Replace logwakeup() with "int msgbuftrigger". There is littlePoul-Henning Kamp2000-12-201-52/+110
* Simplify the tprintf() API.Poul-Henning Kamp2000-11-261-34/+18
* Make log(-1, ...) do what addlog(...) did.Poul-Henning Kamp2000-11-261-38/+15
* Treat %X the same as %x (not entirely correct, but close enough).Mike Smith2000-10-021-0/+1
* Major update to the way synchronization is done in the kernel. HighlightsJason Evans2000-09-071-1/+2
* Do not fault if curproc is null.Peter Wemm2000-04-291-1/+1
* $Id$ -> $FreeBSD$Peter Wemm1999-08-281-1/+1
* Merge the cons.c and cons.h to the best of my ability. alpha may orPoul-Henning Kamp1999-08-091-2/+2
* Make long longs ("%ll" format) work.Brian Feldman1999-08-071-2/+6
* This makes the in kernel printf routines conform to the documentedDoug Rabson1999-07-241-13/+24
* Oops, missed out one chunk of the last patch. (*blush*)Peter Wemm1999-07-141-2/+2
* Fixes for a couple of problems in last commit:Peter Wemm1999-07-101-8/+8
* Implement the %q prefix for the integer types. Note that egcs on thePeter Wemm1999-07-091-17/+81
* ksprintn() may be called with base=2, so redefine MAXNBUF accordingly.Archie Cobbs1999-06-071-18/+19
* The function ksprintn(), which is used to convert numbers to ASCII, is notArchie Cobbs1999-06-061-8/+14
* Unifdef VM86.Jonathan Lemon1999-06-011-1/+18
* Add snprintf(3) and vsnprintf(3) capability to the kernel.Archie Cobbs1998-12-031-2/+55
* Store formatted panic string in static buffer to make it available laterAndrey A. Chernov1998-09-061-1/+14
* Fixed the formatting of some tables (mainly the one produced by psBruce Evans1998-08-101-2/+2
* Cast pointers to uintptr_t/intptr_t instead of to u_long/long,Bruce Evans1998-07-151-2/+2
* Fixed (un)sign extension bugs in %+n format. -4 becameBruce Evans1998-07-081-7/+16
* Some cleanups related to timecounters and weird ifdefs in <sys/time.h>.Poul-Henning Kamp1998-05-281-4/+45
* Make the size of the msgbuf (dmesg) a "normal" option.Poul-Henning Kamp1998-05-191-10/+6
* Handle "%...p" as "%#...x" instead of "0x%...x". This is a quick fixBruce Evans1997-12-281-3/+2
* Last major round (Unless Bruce thinks of somthing :-) of malloc changes.Poul-Henning Kamp1997-10-121-2/+2
* Removed unused #includes.Bruce Evans1997-09-021-3/+1
* Back out part 1 of the MCFH that changed $Id$ to $FreeBSD$. We are notPeter Wemm1997-02-221-1/+1
* Make the long-awaited change from $Id$ to $FreeBSD$Jordan K. Hubbard1997-01-141-1/+1
* Fixed the easy cases of const poisoning in the kernel. Cosmetic.Bruce Evans1996-08-311-3/+3
* Collect all the functioons concerned with rebooting into one placeJulian Elischer1996-08-191-56/+1
* Correct a comment. There is no fn `kprintf'Gary Palmer1996-05-091-2/+2
* Clean up various compiler warnings. Most (if not all) were benignGary Palmer1996-05-081-3/+5
* KGDB is dead. It may come back one day if somebody does it.Poul-Henning Kamp1996-05-021-10/+4
* Bill Fenner <fenner@parc.xerox.com> comes up with a better fix to theJordan K. Hubbard1996-03-251-4/+5
* Ok, now this is correct (even simple fixes sometimes ain't so simple :)Jordan K. Hubbard1996-03-231-3/+4
* Fix bogus last commit - debugger_on_panic was referenced even whenJordan K. Hubbard1996-03-231-2/+2
* Remove all traces of KADBPoul-Henning Kamp1996-03-231-11/+15
* Add a new option: DDB_UNATTENDED. Stops machine dropping into DDBGary Palmer1996-02-281-1/+3
* Kernel printf now returns int.Justin T. Gibbs1996-01-291-3/+5
* Restored newline at the end of panic messages.Bruce Evans1996-01-251-2/+3
* Remove %r hack, we have vprintf() now.Poul-Henning Kamp1996-01-241-26/+22
* bounds check the radix, just in case.Poul-Henning Kamp1996-01-221-1/+5
* Imake %.*s really work. :-(Poul-Henning Kamp1996-01-191-5/+9