summaryrefslogtreecommitdiff
path: root/share
AgeCommit message (Collapse)Author
2020-01-25add EXAMPLES and polish the wording and the order a bit;Ingo Schwarze
patch from espie@ tweaked by me; OK espie@, and millert@ agrees with the direction
2020-01-25correct sysctl name; ok mpiJason McIntyre
2020-01-24Document `kern.allowdt' button.Martin Pieuchot
sysctl.2 bits from benno@
2020-01-24regenMartin Pieuchot
2020-01-24re{move,bound,ference}Ted Unangst
2020-01-24"high-performance Ethernet" -> "Ethernet"Jonathan Gray
ok tedu@ kettenis@
2020-01-24mesh(4) is old world and only new world macppc hardware is supported.Kenneth R Westerback
ok tedu@ jsg@
2020-01-24mesh(4) is old world and only new world macppc hardware is supported.Kenneth R Westerback
ok tedu@ jsg@
2020-01-23/usr/local/sbin was added in at least 2014 to login.conf's 'path' entry in theOkan Demirmen
'default' class; also added to _PATH_DEFPATH in 2019. Update PATH accordingly. OK millert@
2020-01-23punctuation fixes;Jason McIntyre
2020-01-23regen for pppac(4)David Gwynne
pointed out by deraadt@
2020-01-23the pppx(4) driver also provides pppac(4) interfacesDavid Gwynne
2020-01-22document ml_hdatalen and mq_hdatalenDavid Gwynne
2020-01-22regenMartin Pieuchot
2020-01-22remove references to rtfpsJonathan Gray
2020-01-22rm rtfps driver. disabled and man page doesn't inspire much confidence.Ted Unangst
ok deraadt
2020-01-21Manual for dt(4).Martin Pieuchot
2020-01-21remove entry for esp(4);Jason McIntyre
2020-01-21remove unfinished macppc esp driver.Ted Unangst
ok deraadt krw
2020-01-20Add const to struct vops.Claudio Jeker
2020-01-19Introduce a new mdoc(7) macro .Tg ("tag") to explicitly mark a placeIngo Schwarze
as defining a term. Please only use it when automatic tagging does not work. Manual page authors will not be required to add the new macro; using it remains optional. HTML output is still rudimentary in this version and will be polished later. Thanks to kn@ for reminding me that i have been considering since BSDCan 2014 whether something like this might be useful. Given that possibilities of making automatic tagging better are running out and there are still several situations where automatic tagging cannot do the job, i think the time is now ripe. Feedback and no objection from millert@; OK espie@ inoguchi@ kn@.
2020-01-17long overdue description of font.port.mkJasper Lievisse Adriaanse
reminded by espie@
2020-01-17- pf.conf(5) should clearly state range match operator ':'Alexandr Nedvedicky
does not work for uid/gid. OK @kn, OK @sthen
2020-01-16Usually, -width Fl (which is 10n) is too wide and hence ugly.Ingo Schwarze
Change several instances, most of them to the usual -width Ds.
2020-01-14amlsm(4)Mark Kettenis
2020-01-14amltemp(4)Mark Kettenis
2020-01-12bsd.port.mk(5): remove ports-gcc minor version, it's enough tocwen
differentiate it from base-gcc, and we won't have to change the manpage for every ports-gcc minor update. Proposed by and OK sthen@
2020-01-12*sleep_nsec(9): sleep *at least* the given number of nanosecondscheloha
The *sleep(9) interfaces are challenging to use when one needs to sleep for a given minimum duration: the programmer needs to account for both the current tick and any integer division when converting an interval to a count of ticks. This sort of input conversion is complicated and ugly at best and error-prone at worst. This patch consolidates this conversion logic into the *sleep_nsec(9) functions themselves. This will allow us to use the functions at the syscall layer and elsewhere in the kernel where guaranteeing a minimum sleep duration is of vital importance. With input from bluhm@, guenther@, ratchov@, tedu@, and kettenis@. Requested by mpi@ and kettenis@. Conversion algorithm from mpi@. ok mpi@, kettenis@, deraadt@
2020-01-11bsd.port.mk(5): substitute mentions of the retired gcc-4.9 with thecwen
current gcc-8.3. OK espie@
2020-01-11remove sli(4)Jonathan Gray
This driver was never completed. It only mapped memory and established an interrupt. ok krw@ mlarkin@ dlg@
2020-01-10Document ruby27 FLAVORJeremy Evans
2020-01-10Document the "delim" syntax and its usage.Ingo Schwarze
Closing a gap reported by bentley@, who also sent a patch, but i'm explaining it somewhat differently. While here, remove duplicate information from the text. OK bentley@
2020-01-10Logitech Webcam C920 Pro works fine as tested by a friend of mine.Marcus Glocker
2020-01-10remove dpt(4) driver for DPT EATA SCSI RAIDJonathan Gray
Not built since 2006, and a mail from 2004 mentions no one having hardware. Unsurprisingly it does not build with clang. ok mlarkin@ krw@ deraadt@
2020-01-09Cleanup ioctl(2) list. FIONBIO, FIOASYNC and FIONREAD are not definedClaudio Jeker
in <net/if_tun.h> also there is no need to document them again. Instead reference to ioctl(2) that has all the info. Also remove TIOCSPGRP and TIOCGPGRP and replace them with FIOSETOWN and FIOGETOWN. Users should use those ioctl(2) to set the process / process group to be signaled when FIOASYNC is set. OK visa@
2020-01-08Unify handling of ioctls FIOSETOWN/SIOCSPGRP/TIOCSPGRP andVisa Hankala
FIOGETOWN/SIOCGPGRP/TIOCGPGRP. Do this by determining the meaning of the ID parameter inside the sigio code. Also add cases for FIOSETOWN and FIOGETOWN where there have been TIOCSPGRP and TIOCGPGRP before. These changes allow removing the ID translation from sys_fcntl() and sys_ioctl(). Idea from NetBSD OK mpi@, claudio@
2020-01-07zap trailing whitespace;Jason McIntyre
2020-01-03Fix a file descriptor close race in kqueue_register()Visa Hankala
After inserting a knote, check that the associated file descriptor still references the same file. Remove the knote if the descriptor has changed because otherwise the kqueue becomes inconsistent with the file descriptor table. There is an analogous race in fcntl(F_SETLK). It is already handled, but the code can be simplified by using the same check as in kqueue_register(). Fix inspired by DragonFly BSD OK mpi@, anton@
2020-01-03timeout(9): Add timeout_set_flags(9) and TIMEOUT_INITIALIZER_FLAGS(9)cheloha
These allow the caller to initialize timeouts with arbitrary flags. We only have one flag at the moment, TIMEOUT_PROC, but experimenting with other flags is easier if these interfaces are available in-tree. With input from bluhm@, guenther@, and visa@. "makes sense to me" bluhm@, ok visa@
2019-12-31Document fd_getfile_mode(9).Visa Hankala
OK mpi@
2019-12-30espie@ pointed out this page failed to mention the lists are intrusive,Ingo Schwarze
so add the term and very briefly describe the consequences; OK millert@ espie@ jmc@, also using input from guenther@
2019-12-23Add amdgpio(4), a driver for the GPIO controller found on newer AMDMark Kettenis
AMD SoCs/chipsets. From James Hastings
2019-12-23Fix typo "off" -> "of"kmos
From Lev Lazinskiy Thanks!
2019-12-22regenMark Kettenis
2019-12-21a few depend:-related thingies that were still in.Marc Espie
okay millert@, tb@
2019-12-19Spell "mount point" as other man pages do, with a space.Anthony J. Bentley
ok jmc@
2019-12-18about time unwind got a namecheck;Jason McIntyre
2019-12-17install fido.4Theo de Raadt
2019-12-17add delock model; from zeurkousJason McIntyre
2019-12-17sync usb.4 entry with Nd: in this case, i think the usb.4 entry read better;Jason McIntyre