summaryrefslogtreecommitdiff
path: root/share/man/man9
AgeCommit message (Collapse)Author
2015-03-18describe the context the callback runs at in the CONTEXT section.David Gwynne
2015-02-21update siphash manpages to reflect change in return type spelling.Ted Unangst
ok dlg
2015-02-19remove errant reference to mq_enqueue in the mq_enlist description.David Gwynne
2015-02-16Replace \*(Lt \*(Le \*(Gt \*(Ge with literal < <= > >= respectively,Christian Weisgerber
except for instances where \*(Le and \*(Ge are clearly understood as mathematical symbols. Discussed with schwarze@
2015-02-15Use "In" to mark up include files, instead of wrongly wrapping with Aq.Anthony J. Bentley
Aq is not the same as <> in non-ASCII situations, so this caused incorrect output in some places. And it provided no semantics besides. ok schwarze@
2015-02-10remove extra word in previous;Jason McIntyre
2015-02-10First step towards making uiomove() take a size_t size argument:Miod Vallat
- rename uiomove() to uiomovei() and update all its users. - introduce uiomove(), which is similar to uiomovei() but with a size_t. - rewrite uiomovei() as an uiomove() wrapper. ok kettenis@
2015-02-10Sync and sort the M_* mbuf flags to match the way they are listed inLawrence Teo
<sys/mbuf.h>.
2015-02-10Zap m_act here too.Lawrence Teo
2015-02-09tweak previous;Jason McIntyre
2015-02-09task_add takes a flags argument now. this throws some words at it,David Gwynne
maybe some will stick.
2015-02-07jmc reminded me that if we document new functions we should link them upDavid Gwynne
2015-02-07mq_enlist can drop mbufs now.David Gwynne
2015-02-07try and document ml_filter and mq_filter.David Gwynne
2015-02-01Sync struct pkthdr_pf and struct mbuf_ext with their actual definitionsLawrence Teo
in sys/mbuf.h.
2015-01-31Add missing period.Lawrence Teo
2015-01-31Document MSIZE, MCLSHIFT, MCLBYTES, MCLOFSET, and MAXMCLBYTES which haveLawrence Teo
been moved from sys/param.h to sys/mbuf.h (MAXMCLBYTES was moved two years ago; the rest were done recently). Remove references to sys/param.h accordingly. ok deraadt@
2015-01-27remove workq code. its been replaced with tasks.David Gwynne
it has been unused since december, and unhooked from the build since christmas. ok krw@
2015-01-27remove the second void * argument on tasks.David Gwynne
when workqs were introduced, we provided a second argument so you could pass a thing and some context to work on it in. there were very few things that took advantage of the second argument, so when i introduced pools i suggested removing it. since tasks were meant to replace workqs, it was requested that we keep the second argument to make porting from workqs to tasks easier. now that workqs are gone, i had a look at the use of the second argument again and found only one good use of it (vdsp(4) on sparc64 if you're interested) and a tiny handful of questionable uses. the vast majority of tasks only used a single argument. i have since modified all tasks that used two args to only use one, so now we can remove the second argument. so this is a mechanical change. all tasks only passed NULL as their second argument, so we can just remove it. ok krw@
2015-01-24tweak previous;Jason McIntyre
2015-01-24Add bus_dmamem_alloc_range(9).Mark Kettenis
2015-01-24Document bus_dmamem_alloc_range(9).Mark Kettenis
2015-01-23Normal OpenBSD code fits in an 80 column term. From Jim Smith, ok dlg.Stuart Henderson
2015-01-15UVM_INH_* and UVM_ADV_* are gone; use MAP_INHERIT_* and MADV_*Philip Guenther
2015-01-11LOCKDEBUG is dead; perform the funeral ritesPhilip Guenther
pointed out by Helg (xx404 (at) msn.com) ok deraadt@ miod@
2014-12-28The greatest happiness is to scatter inferiour APIs, to drive themKenneth R Westerback
before you, to see their files reduced to ashes, to see those who love them shrouded in tears, and to gather into your API all their invocations. In other words, workq is no more. There is only taskq. ok kettenis@ dlg@ (creator of taskq) jmc@
2014-12-22add TIMEOUT_INITIALIZER for initting timeout declaractions.David Gwynne
similar to TASK_INITIALIZER and all the queue _INITIALIZER things. ok deraadt@
2014-12-19Do not report an EDQUOT "Disk quota exceeded" error from the routingAlexander Bluhm
code. Instead generate an ENOBUFS "No buffer space available" error at the malloc(9) failure in rt_setgate(9) and propagate it. OK mpi@
2014-12-11according to kaspars bankovskis, allocbuf was removed in -r1.88Jason McIntyre
of sys/kern/vfs_bio.c;
2014-12-10retire shutdown hooks; ok deraadt, krwMike Belopuhov
2014-12-09no more string(3);Jason McIntyre
2014-12-08tweak recommendation to use arc4random_bufTed Unangst
2014-12-05keep punctuation separate on macro linesIngo Schwarze
2014-11-24Rename rt_ifa_addloop() into rt_ifa_addlocal() and make it return anMartin Pieuchot
error code on failure (unchecked for the moment). ok mikeb@, jmc@
2014-11-19document when to pass free() a size, and hey -- if it is impossible trackTheo de Raadt
it down, that is ok, you can pass 0. (but it is slower)
2014-11-18include systm.h for arc4random nowTed Unangst
2014-11-16Replace a plethora of historical protection options with justTheo de Raadt
PROT_NONE, PROT_READ, PROT_WRITE, and PROT_EXEC from mman.h. PROT_MASK is introduced as the one true way of extracting those bits. Remove UVM_ADV_* wrapper, using the standard names. ok doug guenther kettenis
2014-11-15Reduce instances of `` '' in manuals.Anthony J. Bentley
troff displays these as typographic quotes, but nroff implementations almost always print them literally, which rarely has the intended effect with modern fonts, even in stock xterm. These uses of `` '' can be replaced either with more semantic alternatives or with Dq, which prints typographic quotes in a UTF-8 locale (but will automatically fall back to `` '' in an ASCII locale). improvements and ok schwarze@
2014-11-05some minor tweaks;Jason McIntyre
2014-11-05i forgot the :wq bit after applying jmcs tweaks.David Gwynne
2014-11-04document the SipHash24 api. some more could be done for history andDavid Gwynne
where its appropriate to use it, but that can happen later. discussed with djm@ tweaks from jmc@
2014-11-02tweak wording and update panic messagesTed Unangst
2014-11-01tweak previous;Jason McIntyre
2014-11-01Document rtalloc(9).Martin Pieuchot
2014-10-22make [bl]emtoh{16,32,64} take volatile const foo *, not volatile foo *David Gwynne
while in the manpage add volatile where the code has it too. ok miod@ guenther@
2014-10-15Use the terms "routing entry" or simply "entry" when talking about theMartin Pieuchot
kernel representation of a network route. While here add some missing headers in the SYNOPSIS.
2014-10-14RTFREE() is no more.Martin Pieuchot
2014-10-08rtalloc(9) and rtalloc_noclone(9) are dead, long live rtalloc1(9)!Martin Pieuchot
reminded by phessler@
2014-09-08obvious cases of missing .An;Ingo Schwarze
found with the new mandoc(1) MANDOCERR_AN_MISSING warning; no text changes
2014-09-05functions are .Fn, not .FaDavid Gwynne