summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Split section 6 catpages/manpages out into games dist.jkh1997-07-022-2/+16
|
* Add rcsid, usage(). Silent -Wall. Use warn(3).charnier1997-07-026-17/+46
|
* Nm does not always need an argument.charnier1997-07-021-6/+4
|
* One newline should be enough.charnier1997-07-021-2/+2
|
* This commit was generated by cvs2svn to compensate for changes in r27163,bde1997-07-023-0/+1121
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Import Lite2's src/sbin, except for XNSrouted and routed. All relevantbde1997-07-0219-84/+1277
| | | | | | | | | | files in src/sbin are off the vendor branch, so this doesn't change the active versions.
| * Import Lite2's src/bin. All files in src/bin are off the vendor branch,bde1997-07-0140-309/+563
| | | | | | | | so this doesn't change the active versions.
* | Import Lite2's src/sbin, except for XNSrouted and routed. All relevantbde1997-07-021-0/+388
| | | | | | | | | | files in src/sbin are off the vendor branch, so this doesn't change the active versions.
* | Bury this properly.bde1997-07-011-13/+0
| |
* | This commit was generated by cvs2svn to compensate for changes in r27159,bde1997-07-011-0/+13
|\ \ | | | | | | | | | which included commits to RCS files with non-trunk default branches.
| * | Import this unwanted file from Lite-original so that it doesn'tbde1997-07-011-0/+13
| | | | | | | | | | | | | | | get imported with Lite2 (there was only one missing file in src/bin, other than tags files and obj links).
| * | recording cvs-1.6 file deathpeter1995-12-3052-8351/+0
| | |
* | | Make HUP cause an exit (as it used to), and makebrian1997-07-014-55/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | INT cause a hangup - not exiting for -ddial & -auto. HUP must exit because init sends this at system shutdown time (why, I don't know), and we don't want to end up redialing after the HUP (due to another dfilter packet). Pointed out by and discussed with: ache
* | | Initial revisionpeter1997-07-013-0/+5944
| | |
* | | Add forgotten newline.wosch1997-07-012-4/+4
| | | | | | | | | | | | Submitted by: Solaris gencat
* | | malloc_sysv used before initialized, reported in PR4002 byphk1997-07-014-40/+88
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Dmitrij Tejblum <dima@tejblum.dnttm.rssi.ru> Various cleanup from Keith Bostic Reinstate calloc() as a separate funtion, in its own source/object file. leave the manpage integrated with malloc.3 and friends. Too many things were broken in this respect. PR: 4002 Reviewed by: phk Submitted by: Dmitrij Tejblum <dima@tejblum.dnttm.rssi.ru> Submitted by: Keith Bostic <bostic@bostic.com>
* | | Add 64 bit int support to scanf()jkh1997-07-012-14/+32
| | | | | | | | | | | | | | | PR: 2080 Submitted by: David Dawes <dawes@rf900.physics.usyd.edu.au>
* | | $FreeBSD$ -> $Id$.bde1997-07-011-4/+1
| | | | | | | | | | | | | | | Removed Berkeley Id. We never did this like Berkeley (because cvs doesn't handle symlinks) and no interesting Berkeley words are left.
* | | Do not use argv[0] in usage().charnier1997-07-011-8/+8
| | |
* | | Add usage(), rcsid. Use getopt().charnier1997-07-011-12/+44
| | | | | | | | | | | | Obtained from: OpenBSD.
* | | Change the naming conventions for preserve'd files and also documentjkh1997-07-014-35/+72
| | | | | | | | | | | | | | | | | | | | | | | | | | | the option in pkg_create. Now preserved files start with a . and are named .<filename>.<pkgname>.backup so that their purpose is more clear. Note that just using the preserve option without proper pkg_deps is also foolish since packages being deleted in the incorrect order with preserve on can generate some odd results.
* | | Fix a bug (apparently very old) that can cause a TCP connection tojdp1997-07-012-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | be dropped when it has an unusual traffic pattern. For full details as well as a test case that demonstrates the failure, see the referenced PR. Under certain circumstances involving the persist state, it is possible for the receive side's tp->rcv_nxt to advance beyond its tp->rcv_adv. This causes (tp->rcv_adv - tp->rcv_nxt) to become negative. However, in the code affected by this fix, that difference was interpreted as an unsigned number by max(). Since it was negative, it was taken as a huge unsigned number. The effect was to cause the receiver to believe that its receive window had negative size, thereby rejecting all received segments including ACKs. As the test case shows, this led to fruitless retransmissions and eventually to a dropped connection. Even connections using the loopback interface could be dropped. The fix substitutes the signed imax() for the unsigned max() function. PR: closes kern/3998 Reviewed by: davidg, fenner, wollman
* | | Allow distSetByName() to process all the relevant entries.jkh1997-07-012-10/+4
| | | | | | | | | | | | Submitted by: msmith
* | | Un-inline a call to spl0(). It is not time critical, and was only inlinebde1997-07-013-30/+6
| | | | | | | | | | | | | | | | | | | | | because there was no non-inline spl0() to call. Don't frob intr_nesting_level in idle() or cpu_switch(). Interrupts are mostly disabled then, so the frobbing had little effect.
* | | Added ifdefs so that this compiles when neither I586_CPU nor I586_CPUbde1997-07-011-2/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | is defined, or SMP is defined. It is silly to configure PERFMON when it can't work (it will be disabled at runtime), but I like to leave the PERFMON configuration alone when I temporarily disable support for modern CPUs to run regression tests. Removed an unused #include.
* | | Un-inline a call to spl0(). It is not time critical, and was only inlinebde1997-07-013-15/+6
| | | | | | | | | | | | because there was no non-inline spl0() to call.
* | | Some staticized variables were still declared to be extern.bde1997-07-012-6/+2
| | |
* | | Removed extra definition of constty. It is defined in subr_prf.c.bde1997-07-012-6/+2
| | |
* | | Don't cast function pointers to (void *). This will cause warnings.bde1997-07-014-14/+6
| | | | | | | | | | | | | | | | | | | | | They should be fixed when similar warnings for the general interrupt attach routines are fixed. Removed unused #include.
* | | Don't depend on <machine/cpufunc.h> including <sys/types.h>. In fact,bde1997-07-012-8/+2
| | | | | | | | | | | | don't include this kernel-only header at all, since we don't need it.
* | | Don't depend <machine/cpufunc.h> including <sys/types.h>.bde1997-07-011-2/+4
| | |
* | | Don't depend on gcc's feature of permitting labels that aren't followedbde1997-07-019-16/+17
| | | | | | | | | | | | by a statement.
* | | Enabled some SMP options. LINT is for testing that all code compilesbde1997-07-013-18/+24
| | | | | | | | | | | | | | | cleanly, so only negative options should be commented out. Options should have non-default values.
* | | Don't depend on gcc's feature of permitting returning void expressionsbde1997-07-012-5/+8
| | | | | | | | | | | | in functions returning void.
* | | Some staticized variables were still declared to be extern.bde1997-06-303-15/+10
| | |
* | | Don't depend on gcc's feature of interpreting `int foo(c) char c; ...'bde1997-06-302-4/+4
| | | | | | | | | | | | | | | as `int foo(char c) ...' if there is a bogus prototype `int foo(char c);' in scope.
* | | Removed temporary SMP header fix.bde1997-06-302-32/+2
| | |
* | | Removed -I path to gdb's readline. This didn't do much in -currentbde1997-06-301-1/+0
| | | | | | | | | | | | | | | | | | because the -I path to config/libreadline had precedence, but in 2.2 it help hide the bug that the -I path to the non-contrib libreadline was garbage.
* | | sysconfig -> rc.confjkh1997-06-301-3/+3
| | | | | | | | | | | | | | | PR: 3978 Submitted by: Janick.Taillandier@ratp.fr
* | | options.i386:yokota1997-06-305-8/+27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Added the psm options PSM_HOOKAPM and PSM_RESETAFTERSUSPEND. LINT: - Added the psm options PSM_HOOKAPM and PSM_RESETAFTERSUSPEND. - Added comments on the flag 0x20 for syscons. - Clarified descriptions on the flags (0x02, 0x04) regarding the cursor shape in syscons.
* | | Fixes annoying behavior and a bug regarding the destructiveyokota1997-06-303-84/+195
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | cursor (CHAR_CURSOR) 1. Reduced the number of calls to set_destructive_cursor(). The destructive cursor produced noticeable overhead on the system. It was caused by draw_cursor_image() calling set_destructive_cursor() every so often. set_destructive_cursor() absolutely needs to be called when a) the character code under the cursor has changed either because the cursor moved or because the screen was updated or the mouse pointer overlapped the cursor. b) Or a new font has been loaded, c) or the video mode has been changed, d) or the cursor shape has been changed, e) or the user switched virtual consoles. 2. Turn off the configuration flag CHAR_CURSOR (destructive cursor) in scattach() if we have a non-VGA card. The destructive cursor works only for VGA. 3. Removed redundant calls to set_destructive_cursor() in some places. 4. Fixed the "disappearing mouse pointer" problem. The mouse pointer looked hidden under the destructive cursor when it overlaped the cursor. A slightly different version of the patch was reviewd and OKed by sos and ache.
* | | gdb.info still needs a near-copy of hsuser.texinfo to avoid thebde1997-06-301-0/+313
| | | | | | | | | | | | | | | | | | reference to the programming manual. Use this near-copy of the version of hsuser.texinfo in contrib/libreadline instead of the stale near-copy in contrib/gdb.
* | | Add experimental APM support for some laptops.yokota1997-06-301-69/+220
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If the configuration option PSM_HOOKAPM is defined and the APM device is available, the psm driver will issue the ENABLE command to the pointing device at the resume APM event if the device was open when the system went into suspended mode. If the option PSM_RESETAFTERSUSPEND is specified in addition to PSM_HOOKAPM, the driver will try to reset the pointing device before sending the ENABLE command. Built-in PS/2-type pointing devices in some laptops (all the reports I heard were about Toshiba models) sometimes don't work immediately after the system is resumed. The device MAY become available after a while. The system may exhibit the same symptom in other OS's too (no, FreeBSD is not the only OS that is suffering :-). I don't know the correct way of solving this yet, but it's been reported that issuing the ENABLE command after resumption wakes up the pointing device. Without PSM_HOOKAPM, the psm driver behaves in the same way as before. Problem reported in the bsd-nomads mailing list in Japan.
* | | Use EX_USAGE in usage().charnier1997-06-301-2/+2
| | |
* | | Remove lines inside #ifdef 0/#endif.charnier1997-06-304-129/+4
| | |
* | | Add LC_TIME=C to dateache1997-06-301-1/+1
| | |
* | | Synchronize with sys/i386/isa/syscons.c and syscons.h revisions 1.219kato1997-06-302-22/+37
| | | | | | | | | | | | and 1.30, respectively.
* | | Synchronize with sys/i386/i386/machdep.c revision 1.252.kato1997-06-302-6/+4
| | |
* | | Synchronize with sys/i386/conf/Makefile.i386 and files.i386 revisionskato1997-06-304-8/+10
| | | | | | | | | | | | 1.100 and 1.166, respectively.
* | | Add usage().charnier1997-06-301-3/+11
| | |
OpenPOWER on IntegriCloud