summaryrefslogtreecommitdiff
path: root/share/man
AgeCommit message (Collapse)Author
2014-08-28Support .St -susv1 and .St -susv4. Illumos wants to use this,Ingo Schwarze
and it's illogical anyway to have -susv2 and -susv3 but not -susv4.
2014-08-26sort SEE ALSO;Jason McIntyre
2014-08-26usr.sbinRobert Nagy
2014-08-25add an example vmx config lineJonathan Gray
ok dlg@
2014-08-23unbind;Jason McIntyre
2014-08-20Move the examples to the EXAMPLES section and add some actualIngo Schwarze
reference manual style documentation to the DESCRIPTION. Feedback and OK rpe@ and ajacoutot@, also using feedback from deraadt@.
2014-08-20remove one more reference to crypto(4); ok mikebJason McIntyre
2014-08-20Remove userland bits related to the crypto(4) interface; ok deraadtMike Belopuhov
2014-08-18introduce mbuf list and queue apis. both manage fifo lists of mbufsDavid Gwynne
and a count of the mbufs. struct mbuf_list and the ml_foo() apis can be used to build lists of mbufs where you dont need locking (eg, on the stack). struct mbuf_queue and mq_foo() wrap mbuf_lists with a mutex, and limits the number of mbufs that can be queued. they can be useful for moving mbufs between contexts/subsystems. with help from jmc@ for the manpage bits mpi@ is keen
2014-08-15Public key operations are no longer supportedMike Belopuhov
2014-08-15lofn(4) and nofn(4) are goneMike Belopuhov
2014-08-15shorten share/doc/{html,mg} to share/doc, since nothing currentlyJason McIntyre
gets installed in html (i think!);
2014-08-14Clarify that .Em and .Sy are physical, not semantic markup,Ingo Schwarze
explain appropriate usage, and provide some examples. ok jmc@
2014-08-14double word fix-o;Jason McIntyre
2014-08-13Begin cleanup of scaling units.Ingo Schwarze
Note that we use 240u := 1i for all devices, even -Tps and -Tpdf. Big fix of -Tascii rendering of f, m, and u. Small fix of -Tascii rendering of c. Big fix of -Thtml rendering of u. Big fix of -Tps rendering of m, p, and u. Clarify -Tps rendering of c. Correct documentation of scaling units, in particular with respect to u. This for example improves rendering of the OpenGL manuals. Joint work with kristaps@.
2014-08-11document "tc";Jason McIntyre
From: Edward ok millert
2014-08-10Improve variables listing in x11/kde4 module description.Vadim Zhukov
2014-08-10Note that qemu 1.7.2 has the VLAN bug fix, tooStefan Fritsch
2014-08-10some Ev fixes;Jason McIntyre
2014-08-10Document SUBST_*Marc Espie
2014-08-10Typo. ok deraadt@ jmc@Matthieu Herrb
2014-08-10AF_BLUETOOTH is gone. AF_LOCAL isn't involved pipe (and portals are gone).Philip Guenther
2014-08-08zap trailing whitespace;Jason McIntyre
2014-08-08some corrections and improvements with respect to prologue macros;Ingo Schwarze
found while working on mandoc(1) messages
2014-08-08* consistently use semantic mdoc(7) macrosIngo Schwarze
* add HISTORY and AUTHORS * some mdoc(7) style fixes * some wording fixes and avoid stray future tense feedback and ok rpe@ jmc@, ok jasper@
2014-08-04fix small layout inconsistencyJasper Lievisse Adriaanse
ok'd by many
2014-07-25document the scheduler types and how to specify them.David Gwynne
some pointers from schwarze@
2014-07-24tweak previous: use .Er for ENXIOIngo Schwarze
2014-07-24this is start on documenting bufqs. it covers the bits disk drivers needDavid Gwynne
to know. the grubby bits the midlayer touches on them will get written up soon. ok deraadt@
2014-07-23typo; patch from Timo dot Myyra at wickedbsd dot netIngo Schwarze
2014-07-23rephrase multi-packaged LIB_DEPENDS description to match fixed semantics.Marc Espie
2014-07-23Subtraction usually decrements the valuePhilip Guenther
ok dlg@
2014-07-23tweak previous;Jason McIntyre
2014-07-23document mallocarray like malloc throughout the page. better describeDavid Gwynne
what M_CANFAIL means for each. motivation and initial diff from doug hogan
2014-07-22Add a link to pcexio(4) man page. Now 'man 4 pcexio' works fine onKenji Aoyama
luna88k. ok miod@
2014-07-22Drop quotes and mention that 3 and not 2 variables can be overridden.Antoine Jacoutot
ok robert@
2014-07-22Tweak after recebt rc.securelevel change.Antoine Jacoutot
2014-07-18pass atomic_{cas,swap}_uint a volatile void * instead of a volatileDavid Gwynne
void **. the latter is really hard to cast for, and not what what solaris does. ok kettenis@
2014-07-16zap trailing newlines; "go for it" deraadtOkan Demirmen
2014-07-16invert the description describing calendar, since it is run by defaultJason McIntyre
(so we tell folk how to stop it);
2014-07-16no more /etc/disklabels (ironically making my previous commit to thisJason McIntyre
file redundant);
2014-07-16no more html/milter;Jason McIntyre
2014-07-15put examples/ in the right place;Jason McIntyre
2014-07-15/var/db/sysmerge -> /usr/share/sysmergeAntoine Jacoutot
ok deraadt@
2014-07-14No more "securelevel" variable.Antoine Jacoutot
2014-07-14powerdown is gone.Antoine Jacoutot
2014-07-14Add /etc/examples/Antoine Jacoutot
prodded by jmc@
2014-07-14Add TEST_ENV and ALL_TEST_ENV description.Vadim Zhukov
2014-07-14use Nx;Jason McIntyre
2014-07-13KASSERTMSG(9): New kernel assertion with messageMasao Uebayashi
KASSERT() is annoying as it only prints the expression as a string. If you (developers) want to know a little more information, you have to do: #ifdef DIAGNOSTIC if (bad) panic(...); #endif KASSERTMSG() replaces it into a single line: KASSERTMSG(!bad, ...); Taken from NetBSD. (There is a concern that KASSERT() messages are too long; consume more memory, and not friendly for small monitors. This have to be considered & revisited later.) "Like" from henning@ Man page review & advices from jmc@ and schwarze@