aboutsummaryrefslogtreecommitdiff
path: root/contrib
Commit message (Collapse)AuthorAgeFilesLines
* Fix typo which causes an unnecessary line break.Nik Clayton1999-05-291-1/+1
| | | | | | | | PR: docs/11561 Submitted by: Norihiro Kumagai <kuma@nk.rim.or.jp> Notes: svn path=/head/; revision=47600
* fix End key nameAndrey A. Chernov1999-05-281-1/+1
| | | | Notes: svn path=/head/; revision=47574
* describe processAndrey A. Chernov1999-05-281-0/+3
| | | | Notes: svn path=/head/; revision=47564
* mergeAndrey A. Chernov1999-05-2810-355/+638
| | | | Notes: svn path=/head/; revision=47563
* This commit was generated by cvs2svn to compensate for changes in r47558,Andrey A. Chernov1999-05-2847-838/+2420
|\ | | | | | | | | | | | | which included commits to RCS files with non-trunk default branches. Notes: svn path=/head/; revision=47559
| * readline v4.0Andrey A. Chernov1999-05-2855-1147/+3062
| | | | | | | | Notes: svn path=/vendor/libreadline/dist/; revision=47558
* | Port pnpinfo to alpha.Doug Rabson1999-05-221-4/+10
| | | | | | | | Notes: svn path=/head/; revision=47405
* | Fix a coredump when debugging corefiles from static programs.Doug Rabson1999-05-221-1/+1
| | | | | | | | Notes: svn path=/head/; revision=47387
* | Cosmetic changes to make it compile without errors in gcc -WallJulian Elischer1999-05-221-10/+17
| | | | | | | | Notes: svn path=/head/; revision=47381
* | Fix typo (#unset where #undef was meant).John Polstra1999-05-211-1/+1
| | | | | | | | Notes: svn path=/head/; revision=47352
* | Consistantly protect "#define FOO ..." with "#undef FOO".David E. O'Brien1999-05-201-1/+37
| | | | | | | | Notes: svn path=/head/; revision=47333
* | Add 3.2 to the list of legal FreeBSD versions for the .Os FreeBSD macro.Bill Fenner1999-05-141-0/+1
| | | | | | | | Notes: svn path=/head/; revision=47191
* | Add 3.2 to the list of legal FreeBSD versions for the .Fx macro.Bill Fenner1999-05-141-0/+1
| | | | | | | | Notes: svn path=/head/; revision=47190
* | Complete the list of FreeBSD version numbers accepted by the .Fx macro.Joseph Koshy1999-05-141-0/+6
| | | | | | | | | | | | | | | | PR: docs/11705 Submitted by: Stephen J. Roznowski <sjr@home.net> Notes: svn path=/head/; revision=47164
* | Add a hook to ffs_fsync to allow soft updates to get first chance at doingKirk McKusick1999-05-141-28/+97
| | | | | | | | | | | | | | | | | | a sync on the block device for the filesystem. That allows it to push the bitmap blocks before the inode blocks which greatly reduces the number of inode rollbacks that need to be done. Notes: svn path=/head/; revision=47131
* | Add a min TTL flag to go along with the max TTL flag. That is, this flagArchie Cobbs1999-05-122-20/+44
| | | | | | | | | | | | | | | | | | allows you to start tracing at a hop number other than 1. Submitted by: Stefan `Sec` Zehl <sec@42.org> Notes: svn path=/head/; revision=47071
* | Don't assume branch heads are alive.. (related to previous change to thePeter Wemm1999-05-101-1/+2
| | | | | | | | | | | | | | older 1.9.26 baseline) Notes: svn path=/head/; revision=46893
* | Put back changes that might be causing trouble on Alpha.Kirk McKusick1999-05-091-3/+5
| | | | | | | | Notes: svn path=/head/; revision=46827
* | Update this with reality.David E. O'Brien1999-05-081-4/+4
| | | | | | | | Notes: svn path=/head/; revision=46711
* | Revive the pam_deny and pam_permit modules from Linux-PAM. They areJohn Polstra1999-05-086-0/+450
| | | | | | | | | | | | | | | | | | | | | | | | | | simple enough to be trusted. Add account management functionality to the pam_unix module. These changes should make it possible to use PAM in some ports. Submitted by: Max Khon <fjoe@iclub.nsu.ru> Notes: svn path=/head/; revision=46665
* | Whitespace cleanup.Kirk McKusick1999-05-071-2/+2
| | | | | | | | Notes: svn path=/head/; revision=46618
* | Get rid of random debugging cruft; sync up with latest version.Kirk McKusick1999-05-071-38/+10
| | | | | | | | Notes: svn path=/head/; revision=46616
* | Severe slowdowns have been reported when creating or removing manyKirk McKusick1999-05-071-108/+290
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | files at once on a filesystem running soft updates. The root of the problem is that soft updates limits the amount of memory that may be allocated to dependency structures so as to avoid hogging kernel memory. The original algorithm just waited for the disk I/O to catch up and reduce the number of dependencies. This new code takes a much more aggressive approach. Basically there are two resources that routinely hit the limit. Inode dependencies during periods with a high file creation rate and file and block removal dependencies during periods with a high file removal rate. I have attacked these problems from two fronts. When the inode dependency limits are reached, I pick a random inode dependency, UFS_UPDATE it together with all the other dirty inodes contained within its disk block and then write that disk block. This trick usually clears 5-50 inode dependencies in a single disk I/O. For block and file removal dependencies, I pick a random directory page that has at least one remove pending and VOP_FSYNC its directory. That releases all its removal dependencies to the work queue. To further hasten things along, I also immediately start the work queue process rather than waiting for its next one second scheduled run. Notes: svn path=/head/; revision=46609
* | Fix spelling and typos.Joseph Koshy1999-05-061-6/+8
| | | | | | | | | | | | | | | | PR: docs/11506 Submitted by: Norihiro Kumagai <kuma@jp.freebsd.org> Notes: svn path=/head/; revision=46554
* | Add the capability for traceroute(8) to send packets of any IP protocolArchie Cobbs1999-05-062-37/+244
| | | | | | | | | | | | | | | | | | | | instead of just UDP; an alternate protocol is specified by '-P proto'. This is useful for finding routers that are blocking packets based on IP protocol. New handlers can be added fairly easily to do protocol- specific things. Notes: svn path=/head/; revision=46542
* | Uninitialized variable. Do not assume certain endianess.Luoqi Chen1999-05-041-3/+4
| | | | | | | | Notes: svn path=/head/; revision=46422
* | GC some unused files from gdb and add them to the exclude list for futureDoug Rabson1999-05-033-268/+10
| | | | | | | | | | | | | | imports. Notes: svn path=/head/; revision=46369
* | Resurrect a file for alpha support in GDB and add some minor FreeBSD tweaks.Doug Rabson1999-05-021-0/+1415
| | | | | | | | | | | | | | Magic wand waved by: Peter Wemm <peter@netplex.com.au> Notes: svn path=/head/; revision=46319
* | Delete parts of gdb which are now shared with binutils.Doug Rabson1999-05-02300-105553/+0
| | | | | | | | Notes: svn path=/head/; revision=46317
* | Merge conflicts. More elegant improvements will follow in a coupleMark Murray1999-05-0210-124/+543
| | | | | | | | | | | | | | of days. Notes: svn path=/head/; revision=46313
* | This commit was generated by cvs2svn to compensate for changes in r46307,Mark Murray1999-05-02408-4856/+22192
|\ \ | | | | | | | | | | | | | | | | | | which included commits to RCS files with non-trunk default branches. Notes: svn path=/head/; revision=46308
| * | Maintenance releace 3 of perl5.005. Includes support for threads.Mark Murray1999-05-02418-4951/+22733
| | | | | | | | | | | | Notes: svn path=/vendor/perl5/dist/; revision=46307
* | | The maximum pagesize for alpha is 64k, not 1Mb.Doug Rabson1999-05-021-1/+1
| | | | | | | | | | | | Notes: svn path=/head/; revision=46293
* | | Add upgrade instructions to facilitate future gdb imports.Doug Rabson1999-05-022-0/+29
| | | | | | | | | | | | Notes: svn path=/head/; revision=46292
* | | Merge local changes into gdb-4.18 and add changes for FreeBSD/alpha.Doug Rabson1999-05-0226-1811/+7519
| | | | | | | | | | | | Notes: svn path=/head/; revision=46289
* | | This commit was generated by cvs2svn to compensate for changes in r46283,Doug Rabson1999-05-02297-14202/+120511
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | which included commits to RCS files with non-trunk default branches. Notes: svn path=/head/; revision=46284
| * | | Virgin import of gdb-4.18Doug Rabson1999-05-02387-20882/+141599
| | | | | | | | | | | | | | | | Notes: svn path=/vendor/gdb/dist/; revision=46283
* | | | Fix conflicts.David E. O'Brien1999-05-026-102/+191
| | | | | | | | | | | | | | | | Notes: svn path=/head/; revision=46279
* | | | junk from the last importDavid E. O'Brien1999-05-021-89/+0
| | | | | | | | | | | | | | | | Notes: svn path=/head/; revision=46278
* | | | This commit was generated by cvs2svn to compensate for changes in r46275,David E. O'Brien1999-05-0223-161/+770
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | which included commits to RCS files with non-trunk default branches. Notes: svn path=/head/; revision=46276
| * | | | Virgin import of ISC-DHCP v2.0b1pl27David E. O'Brien1999-05-0228-250/+947
| | | | | | | | | | | | | | | | | | | | Notes: svn path=/vendor/isc-dhcp/dist/; revision=46275
* | | | | Turn DEFAULT_VTABLE_THUNKS back on. It caused problems with undefined symbolsDavid E. O'Brien1999-04-301-4/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | in libstdc++. Until I have a chance to look at what that problem is and to carefully consider the upgrade issues of turning it back on at a later date if we leave it turned off for any extended peroid of time. Notes: svn path=/head/; revision=46211
* | | | | Rather than hack config/freebsd.h to contain our hacks for a native compiler,David E. O'Brien1999-04-281-45/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | just include them in tm.h (as built from cc/cc_tools/Makefile). This will reduce the diffs from the vendor sources. Excellent idea by: jdp Notes: svn path=/head/; revision=46157
* | | | | Simplify the definition of FBSD_SWITCH_TAKES_ARG, and make sureDavid E. O'Brien1999-04-272-18/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | SWITCH_TAKES_ARG isn't defined (which svr4.h does) when we assign our definition to it. Notes: svn path=/head/; revision=46122
* | | | | Wait until EGCS 1.2 to use more efficient ``thunks'' to implement C++ vtables.David E. O'Brien1999-04-271-3/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | While I have yet to hear of any problems with us using thunks. The EGCS mailing list notes some have problems with it and not using them are a safer default. People wanting to use them, can set the appropiate compiler flag. Notes: svn path=/head/; revision=46118
* | | | | Use new `FBSD_SWITCH_TAKES_ARG' and `FBSD_WORD_SWITCH_TAKES_ARG'.David E. O'Brien1999-04-221-0/+3
| | | | | | | | | | | | | | | | | | | | Notes: svn path=/head/; revision=45941
* | | | | Move `SWITCH_TAKES_ARG' to `FBSD_SWITCH_TAKES_ARG' and `WORD_SWITCH_TAKES_ARG'David E. O'Brien1999-04-221-5/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | to `FBSD_WORD_SWITCH_TAKES_ARG' which allows architectures to tweak these values if needed. Notes: svn path=/head/; revision=45940
* | | | | Fix typos.Nik Clayton1999-04-141-3/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PR: docs/8682 Submitted by: hnokubi@yyy.or.jp Reviewed by: nik Notes: svn path=/head/; revision=45684
* | | | | Document the "-D" option (UTSL).David E. O'Brien1999-04-141-0/+12
| | | | | | | | | | | | | | | | | | | | Notes: svn path=/head/; revision=45674
* | | | | Support linking against libgcc_r.David E. O'Brien1999-04-141-0/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Submitted by: Luoqi Chen <luoqi@chen.ml.org> Notes: svn path=/head/; revision=45670