summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Revert $FreeBSD$ to $Id$peter1997-02-227-7/+7
|
* Revert a $FreeBSD$ to $Id$ (file otherwise modified)peter1997-02-221-1/+1
|
* Revert $FreeBSD$ to $Id$peter1997-02-22344-447/+447
|
* Revert $FreeBSD$ to $Id$peter1997-02-22161-172/+172
|
* Revert $FreeBSD$ to $Id$peter1997-02-22513-514/+514
|
* Sync with the revision 1.6 of original cvsup.sgml.hanai1997-02-221-13/+109
| | | | Submitted by: iwasaki@jp.FreeBSD.ORG
* Revert $FreeBSD$ back to $Id$peter1997-02-22114-115/+115
|
* Revert $FreeBSD$ back to $Id$peter1997-02-22218-225/+225
|
* The "burn-in" phase has finished: this set of patches seems to runjoerg1997-02-222-7/+287
| | | | | | | | | | | | | stable now at a customer's site. Finally add the ability to syslogd to pipe particular messages through an arbitrary filtering command. Idea stolen from IRIX. This code is courtesy of the interface business GmbH, Dresden. Comment about whether to also merge this into 2.2 or not, please. Reviewed by: (long ago) peter
* Regenerate to include correct Id stringpeter1997-02-225-5/+5
|
* Revert $FreeBSD$ back to $Id$peter1997-02-22116-116/+116
|
* Back out an easy $FreeBSD$peter1997-02-221-1/+1
|
* Urk, there were two $FreeBSD$'s in this file...peter1997-02-221-1/+1
|
* back out an easy $FreeBSD$ (file already left vendor branch)peter1997-02-221-1/+1
|
* Back out an easy $FreeBSD$ (file already left vendor branch)peter1997-02-221-1/+1
|
* Back out easy $FreeBSD$ (file already left vendor branch)peter1997-02-221-1/+1
|
* Back out some easy $FreeBSD$ changes. These files already left the vendorpeter1997-02-225-5/+5
| | | | branch.
* Back out part 1 of the MCFH that changed $Id$ to $FreeBSD$. We are notpeter1997-02-221284-1290/+1290
| | | | ready for it yet.
* Clean up a rather incorrectly phrasedjkh1997-02-221-7/+9
| | | | set of instructions on lndir usage.
* Make it possible to substitute INTERFACE when executing commands.phk1997-02-222-1/+6
|
* Support the installation of character devices via an lkm.mpp1997-02-221-1/+10
| | | | | | Closes PR# 1716 Submitted by: jpt@magic.net
* Increase FD_SETSIZE back to 1024, select code fixed nowache1997-02-211-1/+1
|
* Properly notice error returns from if_allmulti().wollman1997-02-211-2/+2
|
* Fix potential crash where a user attempts to perform an impliedwollman1997-02-211-1/+14
| | | | | | | | connect in TCP while sending urgent data. It is not clear what purpose is served by doing this, but there's no good reason why it shouldn't work. Submitted by: tjevans@raleigh.ibm.com via wpaul
* Argh, this time get the parentheses right. This hasn't been a good day for me.nate1997-02-211-3/+3
|
* Add a section describing the available CVSup collections. I'm notjdp1997-02-211-9/+114
| | | | wild about the way it looks, but at least the information is there.
* Whoops, make sure we have enough parenthesis.nate1997-02-211-1/+1
| | | | Pointed out by: bde
* Split the "Obtaining FreeBSD" appendix into four sections, forjdp1997-02-214-12/+103
| | | | | | | | CD-ROM, FTP, CTM, and CVSup. Adjust cross-references accordingly. Add a list of CVSup mirror sites, and reference it from the CVSup tutorial. Also, fix a spelling error in the porting document.
* #include <string.h> to help silence -Wall.mpp1997-02-203-0/+3
|
* Security patch from OpenBSD: fixes potential buffer overflow in a staticroberto1997-02-201-2/+3
| | | | | | | | buffer (so more difficult to exploit but better safe than sorry). Found by comparing FreeBSD & OpenBSD sources/logs for the auditing process. Reviewed by: Warner Losh Obtained from: OpenBSD
* Fix the parameters of a call to in_setsockaddr().wollman1997-02-201-1/+1
|
* Change handling of bad signals; there are reasons why this is actuallyjkh1997-02-203-15/+3
| | | | not such a great idea.
* added man page for /dev/sysmouse. (and activate it)jmg1997-02-206-6/+11
| | | | plus add appropriate xrefs now that we have {cd,sd,st}.9
* Split up the Bessel function wrapper files so that most wrapper functionsbde1997-02-2013-177/+315
| | | | are in their own file.
* Removed misplaced duplicate of comment about implementation details.bde1997-02-201-22/+0
|
* Compute (1 - x^2) as ((1 - x) * (1 + x)) instead of as (1 - x * x) tobde1997-02-202-11/+23
| | | | | | | | | | | | | | | avoid easily avoidable loss of precision when |x| is nearly 1. Extended (64-bit) precision only moves the meaning of "nearly" here. This probably could be done better by splitting up the range into |x| <= 0.5 and |x| > 0.5 like the C version. However, ucbtest does't report any errors in this version. Perhaps the C version should be used anyway. It's only 25% slower now on a P5, provided the C version of sqrt() isn't used, and the C version could be optimized better. Errors checked by: ucbtest
* Improved select():bde1997-02-201-36/+51
| | | | | | | | | | | | | | | - avoid malloc() if the number of fds is small. - pack the bits better so that `small' is quite large. - don't waste time generating zero bits for null fd_set pointers or scanning these bits. Possibly improved select(): - free malloc()ed storage before returning. This is simpler and I think huge select()s aren't worth optimizing since they are rare, relative gain would be small and there would be tiny costs for all selects(). Reviewed by: ache (first version by him too)
* Typogrammatical error 'with' -> 'when'.danny1997-02-201-1/+1
| | | | This could be put into 2.2.
* Update the ``Original revision:'' fields and fix the typo of translation datehanai1997-02-202-3/+3
| | | | in install.sgml
* fix an `off by one' accounting error.erich1997-02-201-1/+1
| | | | | This fixes the sysinstall core-dump! Submitted by: HOSOBUCHI Noriyuki <hoso@buchi.tama.or.jp>
* Remove buffer overflow and tempfile race, remove <sys/time.h> hack (andeivind1997-02-2014-87/+122
| | | | | | | | need for it), change definition of setbit() macro and friends to be compatible with <sys/param.h>. The bugs were discovered and fixed as a result of the FreeBSD code audit. Submitted by: Aaron Bornstein <aaronb@j51.com>, Mark Huizer <xaa@stack.nl>
* Fix the rawrite.exe URL.jfieber1997-02-191-1/+1
|
* Fix the url for rawrite.exe.jfieber1997-02-191-1/+1
|
* Make the operation of sonewconn1() a bit clearer by callingwollman1997-02-192-24/+14
| | | | | pru_attach() before putting the new connection on the connection queue.
* ARGH!! Fix obligatory 12th hour fumble. :-(jkh1997-02-193-3/+3
|
* Latest release is 2.1.7.jfieber1997-02-191-1/+1
| | | | Someone who knows Japanese ought to update the date.
* Latest release is 2.1.7.jfieber1997-02-191-2/+2
|
* Moved nqnfs_vop_lease_check() inside #ifndef NFS_NOSERVER.kato1997-02-191-2/+2
| | | | So, NFS_NOSERVER kernel can be compiled again.
* change IP Filter hooks to match new 3.1.8 patches for FreeBSDdarrenr1997-02-192-15/+16
|
* Synchronize with sys/i386/isa/wd.c revision 1.124.kato1997-02-191-1/+1
|
OpenPOWER on IntegriCloud