summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Trivial bugfix which occurs when DEBUG_FLAGS is defined. If DEBUG_FLAGSnate1996-06-271-0/+2
| | | | | is defined, STRIP is undefined and causes the Makefile to blow up, so make sure STRIP is defined if you plan on using it.
* Bump various timeouts in scprobe(). This finally fixes the brokenjoerg1996-06-273-18/+18
| | | | keyboard reset one of my earlier commits has been causing.
* Add Jim Lowe to FreeBSD contributors list - jeeze, was this ever overdue!jkh1996-06-271-1/+2
|
* Add credit to Calweb for the P6 we used to build packages.jkh1996-06-271-1/+4
|
* Add 3rd South Africa mirror.jkh1996-06-273-3/+9
|
* Add new South African mirror - ftp3.markm1996-06-271-1/+4
|
* Comment out the:peter1996-06-271-4/+4
| | | | | | | | .if exists(contrib) SUBDIR+= contrib .endif because it now tries to decend into the new contrib dir which doesn't have a Makefile.
* Improve performance with very large user databases by increasingwpaul1996-06-272-9/+9
| | | | | | | | | hash table size from 256 to 1024. Generate output that looks more like the SunOS mknetid: uses a space instead of tabs for white space. Fix typo in comment in hash.h: Groupit -> Groupid.
* Added libftpio to 'includes'.nate1996-06-261-1/+2
|
* Add a missing space in a commentgpalmer1996-06-261-2/+2
|
* Add -Wall to CFLAGSgpalmer1996-06-261-0/+2
|
* Makefile:gpalmer1996-06-262-3/+3
| | | | | | | Add -Wall to CFLAGS ftpio.h: It's ftpGetModTime, not ftpModTime
* Correct comment relating to pty's. There can be 256 (probablygpalmer1996-06-263-6/+6
| | | | higher actually, but that's all our MAKEDEV supports at this time)
* Fix for " CERT Advisory CA-96.12 - Vulnerability in suidperl"nate1996-06-261-5/+50
| | | | Submitted by: The Perl Gods as described in the advisory
* Correct minor syntactical error.jkh1996-06-261-2/+2
|
* bmaked tclshphk1996-06-261-0/+20
|
* Bmaked tcl 7.5phk1996-06-261-0/+847
|
* This script will help bmake tcl.phk1996-06-261-0/+145
|
* This first appeared in 2.1.5. Correct comment.markm1996-06-261-2/+2
|
* Fixed bug in pasting 8bit char (ache).sos1996-06-266-243/+171
| | | | | Added linefeeds in cuts that extend beyond one line. Prepared for the mousefunctions to be used in nontext modes.
* Allow argv[0] to be a command also.jkh1996-06-269-33/+75
|
* This commit was generated by cvs2svn to compensate for changes in r16756,phk1996-06-26294-0/+100301
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Tcl 7.5, various makefiles will be updated to use these sources as soonphk1996-06-26294-0/+100301
| | | | as I get these back down to my machine.
* Initial revisionphk1996-06-261-0/+4
|
* Yet another fix for the line continuation bug in sed. Keith's patchdg1996-06-261-7/+5
| | | | | | introduced a new bug. This fix appears to work correctly. Fixes PR#1350. Submitted by: mark@linus.demon.co.uk (Mark Valentine)
* Fix a problem that caused system crashes after physio. This problemdyson1996-06-261-6/+11
| | | | | | | | | was due to non-aligned 64K transfers taking 17 pages. We currently do not support >16 page transfers. The transfer is unfortunately truncated, but since buffers are usually malloced, this is a problem only once in a while. Savecore is a culprit, but tar/cpio usually aren't. This is NOT the final fix (which is likely a bouncing scheme), but will at least keep the system from crashing.
* Add the contrib collection to supfiles.phk1996-06-263-3/+6
| | | | (SUP-mirrors take notice !)
* This commit does a couple of things:dyson1996-06-264-136/+183
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Re-enables the RSS limiting, and the routine is now tail-recursive, making it much more safe (eliminates the possiblity of kernel stack overflow.) Also, the RSS limiting is a little more intelligent about finding the likely objects that are pushing the process over the limit. Added some sysctls that help with VM system tuning. New sysctl features: 1) Enable/disable lru pageout algorithm. vm.pageout_algorithm = 0, default algorithm that works well, especially using X windows and heavy memory loading. Can have adverse effects, sometimes slowing down program loading. vm.pageout_algorithm = 1, close to true LRU. Works much better than clock, etc. Does not work as well as the default algorithm in general. Certain memory "malloc" type benchmarks work a little better with this setting. Please give me feedback on the performance results associated with these. 2) Enable/disable swapping. vm.swapping_enabled = 1, default. vm.swapping_enabled = 0, useful for cases where swapping degrades performance. The config option "NO_SWAPPING" is still operative, and takes precedence over the sysctl. If "NO_SWAPPING" is specified, the sysctl still exists, but "vm.swapping_enabled" is hard-wired to "0". Each of these can be changed "on the fly."
* This commit was generated by cvs2svn to compensate for changes in r16748,jmallett1996-06-267-1/+14
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Import OpenBSD m4 as of today.jmallett1996-06-267-1/+14
| |
| * recording cvs-1.6 file deathpeter1995-12-3011-3357/+0
| |
| * This commit was manufactured by cvs2svn to create branch 'OPENBSD'.cvs2svn1994-08-111-0/+181
| |
* | When page table pages were removed from process address space, thedyson1996-06-262-2/+6
| | | | | | | | | | resident page stats were not being decremented. This mode corrects that problem.
* | Add some formatting bug work-arounds.jfieber1996-06-261-127/+127
| |
* | Fix another obj-misusage bogon. This will all get revisited forjkh1996-06-261-2/+2
| | | | | | | | | | 2.2-release (and this file beaten on with a crowbar, as it so richly deserves).
* | New handbook entry on how to use ports, re-written almost completelyjraynard1996-06-261-163/+764
| | | | | | | | from scratch.
* | Make GET request and response parsing HTTP/1.0 compatibleache1996-06-251-7/+7
| |
* | Don't print number (garbadge) if media catalog is inactiveache1996-06-251-2/+3
| |
* | Turn on mknetid.wpaul1996-06-251-3/+3
| |
* | Added #include of <machine/md_var.h>. This will be needed whenbde1996-06-2525-21/+48
| | | | | | | | | | some declarations are moved from <machine/cpufunc.h> to better places.
* | Toss old mknetid script into the attic.wpaul1996-06-253-43/+5
| | | | | | | | Adjust things slightly to support the new mknetid program.
* | This commit was generated by cvs2svn to compensate for changes in r16728,wpaul1996-06-256-0/+838
|\ \ | | | | | | | | | which included commits to RCS files with non-trunk default branches.
| * | (This import had better work correctly or so help me I'll move towpaul1996-06-256-0/+838
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | the Himalayas and become a hermit.) Import new mknetid program. This replaces the crufty, soon to be defunct mknetid script packaged with ypserv. This program parses the group, passwd, hosts and netid databases into the netid.byname map. Duplicate checking is performed using hash tables. Testing on my 486DX2/66 with FreeBSD 2.1.0 showed that this program can process a 30,000-entry passwd database into a netid map (along with assorted group and hosts information) in about 22 seconds. On my SPARC IPX with SunOS 4.1.3, it takes about 15 seconds. This compares favorably with the SunOS mknetid program, which parses the same database(s) in 13 seconds. (With smaller databases, my program is actually slightly faster. Go figure.)
* | | Fixed the `machine' link. It pointed to the wrong place, and was createdbde1996-06-252-12/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | too late to be used in all cases. It should probably be created (early) in bsd.kmod.mk for all LKMs. Use cc instead of cpp | as for the same reasons as in the kernel makefile. CFLAGS isn't split up as well as in the kernel makefile, but cc doesn't pass compiler warning flags to cpp, so there is no need to split it.
* | | trap.c:bde1996-06-259-192/+37
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixed profiling of system times. It was pre-4.4Lite and didn't support statclocks. System times were too small by a factor of 8. Handle deferred profiling ticks the 4.4Lite way: use addupc_task() instead of addupc(). Call addupc_task() directly instead of using the ADDUPC() macro. Removed vestigial support for PROFTIMER. switch.s: Removed addupc(). resourcevar.h: Removed ADDUPC() and declarations of addupc(). cpu.h: Updated a comment. i386's never were tahoe's, and the deferred profiling tick became (possibly) multiple ticks in 4.4Lite. Obtained from: mostly from NetBSD
* | | Save John Polstra's initial fix for profiling for reference. Thebde1996-06-253-12/+15
| | | | | | | | | | | | | | | | | | | | | | | | multiplication in addupc() overflowed for addresses >= 256K, assuming the usual profil(2) scale parameter of 0x8000. addupc() will go away soon. Submitted by: John Polstra <jdp@polstra.com>
* | | Adjust documentation for 2.1.5jkh1996-06-251-2/+2
| | |
* | | Add sys/ioctl.h to includes. Shut up a warning.markm1996-06-251-1/+2
| | |
* | | Fixed comparisons so that preposterously large (>= 0x80000000) brk valuesbde1996-06-252-10/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | aren't silently converted to minbrk. This stops malloc(INT_MAX) from dumping core. Small values are still silently converted. They should be an error. sbrk() doesn't do any range checking or conversions or overflow checking. Moved PIC_EPILOGUE invocation to a more natural place where it obviously doesn't interfere with the comparison.
* | | Make "Fake" turn off more potentially system-nuking options.jkh1996-06-259-48/+66
| | |
OpenPOWER on IntegriCloud