summaryrefslogtreecommitdiff
path: root/share/man/man9/Makefile
AgeCommit message (Collapse)Author
2013-08-08rename fuse docs after existent functions;Jason McIntyre
2013-07-11document fls/flslJonathan Gray
2013-06-05m_defrag(9) wasnt documented.David Gwynne
2013-06-03userland fuse support, but not attaching libfuse yet. ok beck deraadtTed Unangst
from Sylvestre Gallon ccna.syl gmail.com
2013-05-31lookup() and relookup() have 'vfs_' prefixPhilip Guenther
Document NDINITAT(), STRIPSLASHES, and ni_dirfd Tweak some other markup to appear more consistent ok matthew@ schwarze@ jmc@
2013-05-17Link m_dup_pkthdr(9) to mbuf(9)Martin Pieuchot
ok blambert@, jmc@
2013-04-24Add tstohz(9) as the timespec analog to tvtohz(9).Matthew Dempsky
ok miod
2013-01-29document bus_space_{read,write}_raw_N(). needs some polishing...David Gwynne
2013-01-28there is no untimeout function in our kernelDavid Gwynne
2012-12-10Document bus_space_mmap(9) from NetBSD with some tweaks by jmc@.Martin Pieuchot
2012-09-27replace m_zero(9) with M_ZEROIZE; original diff from markusJason McIntyre
ok mikeb markus
2012-09-17document vdrop; original diff from Michal MazurekJason McIntyre
text rewrite/ok guenther
2012-06-21link copy.9 to kcopy.9Matthew Dempsky
2012-04-26Add strnlen() to libkern.Matthew Dempsky
ok deraadt
2011-12-08Begin documenting the soup sandwich that is the kernel routing code.Bret Lambert
Much handholding jmc@ ok jmc@ sthen@ claudio@
2011-07-29Remove references to a function that no longer exists, reminded by claudio@Bret Lambert
ok jmc@, claudio@
2011-05-22fix pathnameTheo de Raadt
2011-05-21Document pci_intr_map_msi(9).Mark Kettenis
2011-04-05add a man page for dma_alloc(9)Theo de Raadt
2011-04-04Documentation for km_alloc and km_freeArtur Grabowski
2011-03-08Add a kernel man page sosplice(9) for the socket splicing implementation.Alexander Bluhm
ok jmc@
2011-01-09Upon consideration, random(9) should definately not be documented. ItTheo de Raadt
is not for use by other things (and is not used that way, typically very MD). Perhaps we should rename it to something else...
2011-01-09kern(9) documents the kernel API srandom/random, which should onlyTheo de Raadt
be used by the scheduler. we should rethink this; perhaps delete them.
2011-01-09update random(4) and arc4random(9) manual pagesTheo de Raadt
2010-09-24Add timingsafe_bcmp(3) to libc, mention that it's already in theMatthew Dempsky
kernel in kern(9), and remove it from OpenSSH. ok deraadt@, djm@
2010-08-07Document the mutex locking assert macros.Owain Ainsworth
Requested by marco. ok marco@, schwarze@ (who insists that manpages are still unlocked).
2010-08-01document the rw_assert_ functionsBret Lambert
ok jmc@
2009-09-08MLINK mtx_enter_tryTheo de Raadt
2009-09-02workq_add_task.9David Gwynne
2009-07-20- add MLINK for crypto_get_driverid.9Jason McIntyre
- fix MLINK typo for disk_detach.9 from Alan R. S. Bueno
2009-05-11remove the mtx_enter_try() bits until the code goes back in;Jason McIntyre
ok weingart
2009-04-25Enter mtx_enter_try. In part for completeness, things may startTobias Weingartner
using this soon(ish). Ok oga@, sorta yes kettenis@.
2009-04-21Document timeout_add_msec().Michael Knudsen
oga pointed out that it was undocumented, which caused me to find out that I had this diff in my tree. `fine' deraadt
2009-03-02Remove MEXTMALLOC and MCHTYPE from mbuf.9, as they have not existedBret Lambert
for some time. ok jmc@
2009-01-29Add some kernel socket documentation. Originally from FreeBSD with someClaudio Jeker
tweaks by me to match the OpenBSD reality. Additional help from jmc@ ja ja ja dlg@ and OK blambert@
2009-01-15Remove the pool_cache documentation and MLINKs, tedu removed the code at h2k7.Owain Ainsworth
pool_set_ctordtor() (which can emulate what pool_cache_* did) still needs documenting though. tedu@ and jmc@ seemed to agree. "Do it. I command you!" blambert@
2008-11-29document MCLGETITheo de Raadt
2008-11-04uvmspace_unshare() is never used; ok miodTheo de Raadt
2008-10-27document pool_setipl.David Gwynne
with help from jmc@, thank you.
2008-09-02remove last bits of MALLOC/FREECharles Longeau
spotted by and initial patch from espie@, with inputs from jmc@ ok espie@ jmc@
2008-07-23Document the new timeout_add_* functions.Artur Grabowski
2008-06-10oopsTheo de Raadt
2008-06-10rename man page to a function name that actually exists; requested by jmcTheo de Raadt
2008-06-09man page for crypto/idgen.h functions: idgen32() and idgen32_init()Damien Miller
ok deraadt@
2008-06-09man bits for arc4random_bytes => arc4random_buf rename; ok deraadt@Damien Miller
2008-03-02Add a arc4random_uniform() that returns a uniformly distributed numberDamien Miller
in the range 0 <= x < upper_bound Please use this new API instead of "arc4random() % upper_bound", as it avoids the "modulo bias" that favours small results when upper_bound is not a power of two. feedback deraadt@ mcbride@; ok deraadt@
2007-11-28<oga> art write me a manpageArtur Grabowski
<art> What? Write it yourself. <oga> sudo art write me a manpage. <art> ok Document msleep(9).
2007-11-14Add ieee80211_rate2plcp() and ieee80211_plcp2rate() functions, whichMarcus Glocker
convert the PLCP header signal field to a rate value and vice versa. This implementation has been discussed with Damien and doesn't change any existing net80211 structures. ok damien@
2007-11-03Revert last commit which added ieee80211_rate2plcp() andMarcus Glocker
ieee80211_plcp2rate() because I've got a late feedback from Damien that he dislike the implementation method a lot.
2007-11-01Add ieee80211_rate2plcp() and ieee80211_plcp2rate() functions.Marcus Glocker
Help and OK reyk@