Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-09-23 | fix a bug where the logic was reversed | Kurt Miller | |
2006-09-23 | If fgetln() != NULL, len == 0 is impossible, so remove check. | Ray Lai | |
OK otto@ and jaredy@. | |||
2006-09-22 | Part 1 of file descriptor race and deadlock corrections. | Kurt Miller | |
File status flags should be shared for dup'ed file descriptors. However fd_table_entry's should not be shared for dup'ed file descriptors so they can be independently be closed without interfering with dup'ed fd's. - split out file status flags into its own structure fs_flags to manage sharing of status flags between dup'ed file descriptors. - when duplicating a fd, initialize a new fd_table_entry for the new fd, but share the status flags via status_flags. - consolidate the code that sets the underlying system fd to be non-blocking to a new function _thread_fs_flags_init() - consolidate the code that sets the underlying system fd back to blocking into a new function _thread_fs_flags_replace() This change is needed as a prerequisite to the coming race and deadlock corrections. okay marc@ | |||
2006-09-22 | Check return value of authunix_create_default(); from bret lambert | Otto Moerbeek | |
with some guidance by me; ok jaredy@ | |||
2006-09-22 | Back out change in rev 1.15 of to allow whitespace to separate a | Todd C. Miller | |
flag from its optional argument if permutation is disabled. The idea was that since "r:" would match "-r foo" then "r::" should match "-r foo" too as long as we know that things have not been reshuffled. Unfortunately, this causes incompatibilities with GNU getopt_long when the POSIXLY_CORRECT environment variable is set. OK deraadt@ | |||
2006-09-22 | Remove reference to LFS, okay deraadt@ | Pedro Martelletto | |
2006-09-18 | +MLINK pcap.3 pcap_get_selectable_fd.3 | Jason McIntyre | |
from okan demirmen | |||
2006-09-17 | dont put two '\n' at the end of the string returnd by clnt_sperror() | Thordur I. Bjornsson | |
ok deraadt@ | |||
2006-09-15 | sysctl(3) can return ESRCH; noted by Kristaps Johnson; ok miod@ jmc@ | Otto Moerbeek | |
2006-09-15 | better desciption of ESRCH; prompted by jmc@; ok miod@ jmc@ | Otto Moerbeek | |
2006-09-09 | document pcap_get_selectable_fd(); MLINK will happen after unlock | Jason McIntyre | |
from okan demirmen; ok djm | |||
2006-09-09 | fix RSA signature padding vulnerability in OpenSSL libcrypto CVE-2006-4339; | Damien Miller | |
ok beck@ miod@ | |||
2006-09-07 | knock out an .Xr to self; | Jason McIntyre | |
from joachim schipper (pr #5228) | |||
2006-09-03 | Add EINVAL and EOPNOTSUPP for remote filesystems, | Ian Darwin | |
OK jmc@ miod@ | |||
2006-08-29 | If pgrp is zero, the process ID of the specified process is used. | Christian Weisgerber | |
ok jmc@ | |||
2006-08-09 | Document error return when namelen is 0. OK jmc@ | Todd C. Miller | |
2006-08-09 | correction from vasil dimov; | Jason McIntyre | |
tweak whilst in here | |||
2006-08-07 | - fix a sentence | Jason McIntyre | |
- some indent | |||
2006-08-05 | no point mentioning functions if we have nothing useful to say | Jason McIntyre | |
about them; ok djm | |||
2006-08-04 | Add ENOMEDIUM and EMEDIUMTYPE to report medium errors to userland programs | Bob Beck | |
when using removable media devices, along with changes to scsi_base to detect such cases in tapes other devices. This makes tar, dd, and friends report a semi useful error message instead of nonsense when there is nothing in the device. Includes libc minor bump, and will require the corresponding sets change. ok krw@ deraadt@ | |||
2006-08-04 | clarification from kristaps johnson; | Jason McIntyre | |
2006-08-03 | tweak; | Jason McIntyre | |
2006-08-03 | EILSEQ is 84 not 83. | Bob Beck | |
2006-08-03 | Document EILSEQ - forgotten by the wide character folks when they added | Bob Beck | |
it to errno. ok deraadt@ | |||
2006-07-26 | wording/grammar tweaks; | Jason McIntyre | |
2006-07-26 | better macros; | Jason McIntyre | |
2006-07-26 | document `iv'; | Jason McIntyre | |
from eren elci; tweaked by djm ok djm | |||
2006-07-25 | updates from nicholas marriott; | Jason McIntyre | |
re-worded and ok djm | |||
2006-07-23 | remove tzset(3) from SYNOPSIS: it has its own man page; | Jason McIntyre | |
spotted by stevesk; ok otto | |||
2006-07-18 | get rid of arc network support. we have no users of it so this is dead | David Gwynne | |
code. however, it is still cluttering up the kernel namespace a bit. it is better gone. ok claudio@ | |||
2006-07-13 | Back out the anon change. Apparently it was tested by a few, but most of | Theo de Raadt | |
us did not see it or get a chance to test it before it was commited. It broke cvs, in the ami driver, making it not succeed at seeing it's devices. | |||
2006-07-12 | add some more C99 functions: round(3) and roundf(3). | Brad Smith | |
By Steven G. Kargl <kargl at troutmask dot apl dot washington.edu> From FreeBSD | |||
2006-07-09 | grammar tweak, on re-read; | Jason McIntyre | |
2006-07-09 | - clean up the SOCK_RAW text | Jason McIntyre | |
- remove the SOCK_RDM text; suggested by krw - Xr inet(4) and inet6(4) | |||
2006-07-04 | fix prototype of wcstombs; from TAKAHASHI Tamotsu | Otto Moerbeek | |
2006-07-04 | allocate gsalt large enough; from Matthew R. Dempsky <mrd at alkemio | Otto Moerbeek | |
dot org>; ok djm@ deraadt@ | |||
2006-06-27 | crank shlib_version | Damien Miller | |
2006-06-27 | resolve conflicts | Damien Miller | |
2006-06-27 | import of openssl-0.9.7j | Damien Miller | |
2006-06-21 | from netbsd: make anons dynamically allocated from pool. | Michael Shalayeff | |
this results in lesse kva waste due to static preallocation of those for every phys page and also every swap page. tested by beck krw miod | |||
2006-06-20 | Mention that only the superuser may adjust the frequency. Like in | Ray Lai | |
adjtime(2), but less wordy. OK otto@, jmc@. | |||
2006-06-19 | Real kvm routines for vax; allows ``target kvm'' to work in gdb for kernel | Miod Vallat | |
crash dumps. ok kettenis@ | |||
2006-06-14 | .Xr adjfreq and ntpd | Otto Moerbeek | |
2006-06-14 | Introducing adjfreq(2), to adjust the clock frequency. | Otto Moerbeek | |
Loosely based on dragonfly code. Man page help fro jmc@; ok deraadt@ | |||
2006-06-14 | Nuke only two uses of OPENDEV_DRCT in tree. Nuke OPENDEV_DRCT. Long | Kenneth R Westerback | |
marked obsolete since the opendev() behaviour it turned on is now the default. 'it can go' deraadt@ 'no API of mine has ever made it into a standard' downsj@ | |||
2006-06-12 | Use the non-generic SEGSHIFT value in the 020/030 specific codepath. | Miod Vallat | |
2006-06-12 | add class 1 and class 3 root certificates from CAcert.org. ok beck@ | Jakob Schlyter | |
2006-06-09 | proper type and ptdsize checks; had it for three weeks now... sigh | Michael Shalayeff | |
2006-06-08 | potential fd leak (we will fix this before we move to cloning) | Theo de Raadt | |
2006-06-07 | remove expired certificates. ok beck@ | Jakob Schlyter | |