aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/subr_prf.c
Commit message (Expand)AuthorAgeFilesLines
* Move instantiation of msgbufp from 9 MD files to subr_prf.c.Bruce Evans2017-12-071-0/+1
* sys: further adoption of SPDX licensing ID tags.Pedro F. Giffuni2017-11-201-0/+2
* kvprintf %b enhancementsRyan Libby2017-07-121-24/+29
* Remove stray return.Konstantin Belousov2017-06-131-1/+0
* Provide a comment on why stdio.h needs to be included.Scott Long2017-02-281-0/+7
* Include stdio.h to fix libsbuf build.Jung-uk Kim2017-02-281-0/+1
* Implement sbuf_prf(), which takes an sbuf and outputs itScott Long2017-02-281-12/+34
* Include <stdarg.h> instead of <machine/stdarg.h> when compiled asMarcel Moolenaar2016-10-241-0/+4
* Renumber license clauses in sys/kern to avoid skipping #3Ed Maste2016-09-151-1/+1
* Hide counted_warning(9) under #ifdef _KERNEL braces, to allow buildingKonstantin Belousov2016-07-211-0/+2
* Provide counter_warning(9) KPI which allows to issue limited number ofKonstantin Belousov2016-07-211-0/+19
* kvprintf: Pad %*c to width, like %*sConrad Meyer2016-06-091-0/+8
* Add vlog(9).Mark Johnston2015-11-191-1/+7
* Add support for reading MAM attributes to camcontrol(8) and libcam(3).Kenneth D. Merry2015-06-091-0/+63
* Always send log(9) messages to the message buffer.Eric van Gyzen2015-04-201-1/+1
* Add a nulterm byte to the returned sysctl string.Ian Lepore2015-03-151-1/+1
* Fix usage example in kvprintf(9) and its copy in libstand(3): trailing '\n'Alexey Dokuchaev2015-01-231-2/+2
* Pull in r267961 and r267973 again. Fix for issues reported will follow.Hans Petter Selasky2014-06-281-13/+10
* Revert r267961, r267973:Glen Barber2014-06-271-10/+13
* Extend the meaning of the CTLFLAG_TUN flag to automatically check ifHans Petter Selasky2014-06-271-13/+10
* Fix grammar error and trailing newline.Bryan Drewery2014-04-231-2/+1
* Combine similar code from vprintf(9) and log(9).Bryan Drewery2014-03-141-39/+25
* Rework the EARLY_PRINTF mechanism. Instead of defining a special eprintf()Ian Lepore2014-02-121-22/+0
* Implement generic support for early printf. Thought I can't find theWarner Losh2014-01-221-0/+22
* Reduce the scope of the proctree_lock. If several processes causeKonstantin Belousov2013-09-131-7/+6
* Add a vtprintf. It is to tprintf what vprintf is to printf.Navdeep Parhar2013-09-071-5/+12
* 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