summaryrefslogtreecommitdiff
path: root/sys/kern/subr_prf.c
Commit message (Expand)AuthorAgeFilesLines
* Fix double vision syndrome (read: double output) when in theMarcel Moolenaar2011-10-161-13/+7
* Set pca.p_bufr to NULL when we haven't allocated a buffer.Kenneth D. Merry2011-06-071-0/+3
* Fix apparent garbage in the message buffer.Kenneth D. Merry2011-05-311-33/+124
* Use type-specific inline function imax() instead of deprecated macro MAX().Jung-uk Kim2010-07-121-1/+1
* Implement optional 'precision' for numbers. Previously, it was parsed butJung-uk Kim2010-07-081-11/+14
* Make /dev/klog and kern.msgbuf* MPSAFE.Ed Schouten2009-11-031-5/+16
* Remove redundant code in printf() and vprintf().Ed Schouten2009-02-271-28/+1
* Revert previous commit to subr_prf.c and make it more tidy.Ed Schouten2009-02-271-3/+5
* Remove redundant assignment of `p'.Ed Schouten2009-02-261-1/+0
* Use NULL in preference to 0 for pointers.Warner Losh2009-02-031-1/+1
* Revert r185891.Ed Schouten2008-12-211-2/+10
* Remove added newlines from logged messages written to /dev/console.Ed Schouten2008-12-101-10/+2
* Obey signedness flag in %z case.Xin LI2008-11-171-1/+1
* Integrate the new MPSAFE TTY layer to the FreeBSD operating system.Ed Schouten2008-08-201-10/+14
* Instead of doing comparisons using the pcpu area to see ifJulian Elischer2007-03-081-1/+1
* Flushing the buffer is conditional on actually using the buffer. Oops.John Birrell2006-11-301-0/+4
* Turn console printf buffering into a kernel option and only onJohn Birrell2006-11-301-14/+23
* Sweep kernel replacing suser(9) calls with priv(9) calls, assigningRobert Watson2006-11-061-1/+2
* Add a cnputs() function to write a string to the console withJohn Birrell2006-11-011-17/+72
* Declare security and security.bsd sysctl hierarchies in sysctl.h alongRobert Watson2006-09-171-2/+0
* Simplify the pager support in DDB. Allowing different db commands toJohn Baldwin2006-07-121-5/+2
* Implement printf 'X' conversion for both libstand and kernel.Jung-uk Kim2006-03-091-10/+13
* Always print a newline char at the end of the line.Scott Long2006-02-251-1/+2
* Acquire Giant in uprintf() and tprintf() rather than asserting it. InRobert Watson2005-09-261-6/+11
* Correct an incorrect comment from the dawn of time: neither tprintf()Robert Watson2005-09-201-10/+2
* Add GIANT_REQUIRED and WITNESS sleep warnings to uprintf() and tprintf(),Robert Watson2005-09-191-0/+8
* When padding with zero, do pad after prefixes rather than paddingXin LI2005-09-041-1/+5
* If we ignore an unknown % sequence, we must stop interpreting thePoul-Henning Kamp2005-09-031-2/+9
* Make "show msgbuf" use the pager instead of blasting the whole thing out.Doug White2005-06-061-2/+5
* Constify hexdump() harder.Poul-Henning Kamp2005-04-061-2/+2
* In stange circumstances we may end up being the last reference to aPoul-Henning Kamp2005-03-171-4/+1
* Update for the KDB framework:Marcel Moolenaar2004-07-101-3/+2
* Clean up and wash struct iovec and struct uio handling.Poul-Henning Kamp2004-07-101-12/+5
* Add a sysctl/tunable, "kern.always_console_output", that lets you setBrian Feldman2004-06-181-3/+12
* Remove advertising clause from University of California Regent's license,Warner Losh2004-04-051-4/+0
* Add support for 'h' and 'hh' modifiers for printf(9).Nate Lawson2004-02-191-2/+21
* Re-arrange and consolidate some random debugging stuffScott Long2003-12-071-0/+53
* Revert stuff which accidentally ended up in the previous commit.Poul-Henning Kamp2003-07-221-20/+0
* Don't attempt to inline large functions mb_alloc() and mb_free(),Poul-Henning Kamp2003-07-221-0/+20
* When DDB is active, always send printf() output directly to theIan Dowse2003-06-221-1/+5
* Use a new message buffer `consmsgbuf' to forward messages to aIan Dowse2003-06-221-13/+13
* Replace the code for reading and writing the kernel message bufferIan Dowse2003-06-221-94/+26
* Use __FBSDID().David E. O'Brien2003-06-111-1/+3
* Remove unused variable(s).Poul-Henning Kamp2003-05-311-5/+2
* Don't assume that p_session hasn't changed out from under us after unlockingJohn Baldwin2003-04-171-12/+11
* Add a checksum to the kernel message buffer, and update it everyIan Dowse2003-03-281-4/+24
* Including <sys/stdint.h> is (almost?) universally only to be able to usePoul-Henning Kamp2003-03-181-1/+0
* Back out M_* changes, per decision of the TRB.Warner Losh2003-02-191-2/+2
* Add vsnrprintf() which is just like vsnprintf() but takes a "radix"Poul-Henning Kamp2003-02-041-0/+17
* Remove M_TRYWAIT/M_WAITOK/M_WAIT. Callers should use 0.Alfred Perlstein2003-01-211-2/+2