]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/log
FreeBSD/FreeBSD.git
22 years agoRemove GNU awk.
David E. O'Brien [Tue, 4 Jun 2002 21:14:34 +0000 (21:14 +0000)]
Remove GNU awk.

22 years agoGrammar nit.
David E. O'Brien [Tue, 4 Jun 2002 20:01:53 +0000 (20:01 +0000)]
Grammar nit.

Submitted by: keramida

22 years agoInstall the i386 MMX headers, and IA-64 intrinsics functions.
David E. O'Brien [Tue, 4 Jun 2002 20:00:29 +0000 (20:00 +0000)]
Install the i386 MMX headers, and IA-64 intrinsics functions.

Requested by: peter

22 years agoWe don't need this library any more.
David E. O'Brien [Tue, 4 Jun 2002 19:45:09 +0000 (19:45 +0000)]
We don't need this library any more.

22 years agoBump TSB_PAGES_SHIFT to 4. Less sucks too much.
Jake Burkholder [Tue, 4 Jun 2002 19:40:45 +0000 (19:40 +0000)]
Bump TSB_PAGES_SHIFT to 4.  Less sucks too much.

22 years agoDocument -gstabs+
David E. O'Brien [Tue, 4 Jun 2002 18:10:54 +0000 (18:10 +0000)]
Document -gstabs+

22 years agoThe brokenness in ix86_expand_clrstr is quite visible when you
David E. O'Brien [Tue, 4 Jun 2002 18:06:12 +0000 (18:06 +0000)]
The brokenness in ix86_expand_clrstr is quite visible when you
compare the function with ix86_expand_movstr.

Submitted by: Tor Egge

22 years agoGcc 3.1 (-O) now generates broken inline code for memset in some cases.
David E. O'Brien [Tue, 4 Jun 2002 18:04:27 +0000 (18:04 +0000)]
Gcc 3.1 (-O) now generates broken inline code for memset in some cases.
This broke newfs (newfs left some garbage in a bitmap).

The ASM for:

#include <string.h>
int x, foo[100];
main()
{
memset(&foo[0], 0, x);
}

is (at least if you have fixed function alignment):

.file "z.c"
.text
.p2align 2,,3
.globl main
.type main,@function
main:
pushl %ebp
movl %esp, %ebp
pushl %edi
pushl %eax
movl x, %ecx
xorl %eax, %eax
shrl $2, %ecx
movl $foo, %edi
cld
rep
stosl
andl $-16, %esp
<-- the lower bits of `len' should be loaded
    near here
testl $2, %edi <-- this seems to be meant to test the 2^1
    bit in `len' (not alignment of the pointer
    like it actually does).  %edi is the wrong
    register for holding the bits, since it is
    still needed for the pointer.
je .L2
stosw
.L2:
testl $1, %edi <-- similarly for the 2^0 bit.
je .L3
stosb
.L3:
movl -4(%ebp), %edi
leave
ret
.Lfe1:
.size main,.Lfe1-main
.comm foo,400,32
.comm x,4,4
.ident "GCC: (GNU) 3.1 [FreeBSD] 20020509 (prerelease)"

This seems to only result in (len % 3) bytes not being cleared, since gcc
doesn't seem to use the builtin memset unless it knows that the pointer is
aligned.  If %edi could be misaligned, then too many bytes would be set.

Submitted by: BDE

22 years agoAdd REPORT LUNS basic infrastructure.
Matt Jacob [Tue, 4 Jun 2002 17:41:47 +0000 (17:41 +0000)]
Add REPORT LUNS basic infrastructure.

22 years agoMove patches into the src/contrib/tar.
Maxim Sobolev [Tue, 4 Jun 2002 17:31:16 +0000 (17:31 +0000)]
Move patches into the src/contrib/tar.

Requested by:   ps
Reviewed by:    md5(1)

22 years agoImplement _Qp_sqrt. I've been unable to find a C program that gcc generates
Jake Burkholder [Tue, 4 Jun 2002 17:02:27 +0000 (17:02 +0000)]
Implement _Qp_sqrt.  I've been unable to find a C program that gcc generates
a call to this for, but apparently somehing in libstdc++ does.

22 years agoDisplay job status correctly when a pipeline is suspended.
Tim J. Robbins [Tue, 4 Jun 2002 15:26:00 +0000 (15:26 +0000)]
Display job status correctly when a pipeline is suspended.

22 years agoDon't build perl if NO_PERL is defined.
Dag-Erling Smørgrav [Tue, 4 Jun 2002 15:20:11 +0000 (15:20 +0000)]
Don't build perl if NO_PERL is defined.

22 years agoDescribe finished jobs as "Done", not "Exit" (SUSv3)
Tim J. Robbins [Tue, 4 Jun 2002 14:40:33 +0000 (14:40 +0000)]
Describe finished jobs as "Done", not "Exit" (SUSv3)

22 years agoDon't output `state' and `current' fields for processes that aren't
Tim J. Robbins [Tue, 4 Jun 2002 14:37:13 +0000 (14:37 +0000)]
Don't output `state' and `current' fields for processes that aren't
leaders in -l option to jobs(1).

22 years agoMissing prototypes from previous commit.
Tim J. Robbins [Tue, 4 Jun 2002 13:13:54 +0000 (13:13 +0000)]
Missing prototypes from previous commit.

22 years agoCorrect minor spacing problem in output of jobs -l for pipelines.
Tim J. Robbins [Tue, 4 Jun 2002 13:01:51 +0000 (13:01 +0000)]
Correct minor spacing problem in output of jobs -l for pipelines.

22 years agoQuote alias values in the output of the alias(1) builtin so they are
Tim J. Robbins [Tue, 4 Jun 2002 12:59:12 +0000 (12:59 +0000)]
Quote alias values in the output of the alias(1) builtin so they are
suitable for re-input to the shell (SUSv3)

22 years agoInstall MD documentations in ${TARGET} directory instead of ${TARGET_ARCH}.
Yoshihiro Takahashi [Tue, 4 Jun 2002 12:05:29 +0000 (12:05 +0000)]
Install MD documentations in ${TARGET} directory instead of ${TARGET_ARCH}.

22 years agoDon't forget to include ../Makefile.inc.
Maxim Sobolev [Tue, 4 Jun 2002 11:28:09 +0000 (11:28 +0000)]
Don't forget to include ../Makefile.inc.

22 years agoAdd bmake bits for building GNU tar from src/contrib/tar.
Maxim Sobolev [Tue, 4 Jun 2002 11:14:49 +0000 (11:14 +0000)]
Add bmake bits for building GNU tar from src/contrib/tar.

22 years agoSend our ancienv GNU tar into Attic.
Maxim Sobolev [Tue, 4 Jun 2002 11:14:06 +0000 (11:14 +0000)]
Send our ancienv GNU tar into Attic.

Suggested by: ps

22 years agoAdd importing/upgrading instructions.
Maxim Sobolev [Tue, 4 Jun 2002 11:08:12 +0000 (11:08 +0000)]
Add importing/upgrading instructions.

22 years agoAdd razor used for shaving out GNU Tar.
Maxim Sobolev [Tue, 4 Jun 2002 10:40:50 +0000 (10:40 +0000)]
Add razor used for shaving out GNU Tar.

22 years agoWrap lines correctly for the `l' command.
Tim J. Robbins [Tue, 4 Jun 2002 10:40:14 +0000 (10:40 +0000)]
Wrap lines correctly for the `l' command.

22 years agoVirgin import (trimmed) of GNU Tar version 1.13.25.
Maxim Sobolev [Tue, 4 Jun 2002 10:37:47 +0000 (10:37 +0000)]
Virgin import (trimmed) of GNU Tar version 1.13.25.

22 years agoRespect setting of the COLUMNS environment variable (SUSv3)
Tim J. Robbins [Tue, 4 Jun 2002 10:20:10 +0000 (10:20 +0000)]
Respect setting of the COLUMNS environment variable (SUSv3)

22 years agoIgnore empty COLUMNS environment variable. COLUMNS should take precedence
Tim J. Robbins [Tue, 4 Jun 2002 10:11:29 +0000 (10:11 +0000)]
Ignore empty COLUMNS environment variable. COLUMNS should take precedence
over TTY width found via ioctl() (SUSv3)

22 years agoDocument the fact that the `l' command uses the COLUMNS environment
Tim J. Robbins [Tue, 4 Jun 2002 10:01:06 +0000 (10:01 +0000)]
Document the fact that the `l' command uses the COLUMNS environment
variable (SUSv3)

22 years agoIgnore COLUMNS environment variable if it is empty (SUSv3)
Tim J. Robbins [Tue, 4 Jun 2002 10:00:08 +0000 (10:00 +0000)]
Ignore COLUMNS environment variable if it is empty (SUSv3)

22 years agoRespect the setting of the COLUMNS environment variable, use it instead of
Tim J. Robbins [Tue, 4 Jun 2002 09:52:30 +0000 (09:52 +0000)]
Respect the setting of the COLUMNS environment variable, use it instead of
the TTY width obtained by ioctl() when set & non-null. (SUSv3)

22 years agoSort options in Description section.
Tim J. Robbins [Tue, 4 Jun 2002 09:17:30 +0000 (09:17 +0000)]
Sort options in Description section.

22 years agoNote SUSv2 conformance.
Tim J. Robbins [Tue, 4 Jun 2002 09:16:09 +0000 (09:16 +0000)]
Note SUSv2 conformance.

22 years agoconfstr() returns (size_t)-1 on failure. Check for this explicitly instead
Tim J. Robbins [Tue, 4 Jun 2002 08:45:38 +0000 (08:45 +0000)]
confstr() returns (size_t)-1 on failure. Check for this explicitly instead
of trying to see if an unsigned number is less than zero.

22 years agoAdd support for non-numeric key lookup via the 'cmds' file, by using the key
Juli Mallett [Tue, 4 Jun 2002 06:14:11 +0000 (06:14 +0000)]
Add support for non-numeric key lookup via the 'cmds' file, by using the key
base as the key number.

22 years agoNODEV is defined the same in _KERNEL and !_KERNEL case, so move it out from
Juli Mallett [Tue, 4 Jun 2002 05:48:38 +0000 (05:48 +0000)]
NODEV is defined the same in _KERNEL and !_KERNEL case, so move it out from
the preprocessor conditional, and remove the now-empty #else.

Reviewed by: asmodai

22 years agoErr, duh, free(3) doesn't set its argument to NULL... Fix realloc of a freed
Juli Mallett [Tue, 4 Jun 2002 04:08:18 +0000 (04:08 +0000)]
Err, duh, free(3) doesn't set its argument to NULL...  Fix realloc of a freed
chunk.

22 years agoChange some "process id" variables from 'int' to 'pid_t', renaming some
Garance A Drosehn [Tue, 4 Jun 2002 03:40:24 +0000 (03:40 +0000)]
Change some "process id" variables from 'int' to 'pid_t', renaming some
of them to keep better track of which-is-which (multiple variables were
named 'pid').  Moved a global pid-variable into the only routine that
used it.  Net result: fixes two compile-time warnings...

MFC after: 2 weeks

22 years agoCosmetic improvements to some of the syslog() calls in here (in some cases
Garance A Drosehn [Tue, 4 Jun 2002 02:48:12 +0000 (02:48 +0000)]
Cosmetic improvements to some of the syslog() calls in here (in some cases
simply getting the indentation right when the statement wraps).

MFC after: 2 weeks

22 years agoFix all the 'return' statements in here to follow style(9).
Garance A Drosehn [Tue, 4 Jun 2002 01:28:15 +0000 (01:28 +0000)]
Fix all the 'return' statements in here to follow style(9).

MFC after: 2 weeks

22 years agoAvoid checking WIFEXITED and WTERMSIG in some error situations where the
Garance A Drosehn [Tue, 4 Jun 2002 01:16:13 +0000 (01:16 +0000)]
Avoid checking WIFEXITED and WTERMSIG in some error situations where the
value in wstatus is not related to the process that we care about.

MFC after: 2 weeks

22 years agoUse POSIX macros for wait(2)-style status information instead of the
Mike Barcroft [Mon, 3 Jun 2002 23:13:11 +0000 (23:13 +0000)]
Use POSIX macros for wait(2)-style status information instead of the
deprecated 4.2/4.3BSD wait union.  Fix some nearby pid_t/int
confusion.

22 years agoAdd a comment describing a resource leak that occurs during a failure case
Jeff Roberson [Mon, 3 Jun 2002 22:59:19 +0000 (22:59 +0000)]
Add a comment describing a resource leak that occurs during a failure case
in obj_alloc.

22 years agoBackout revision 1.2 since it didn't work and replace it with a fix that
John Baldwin [Mon, 3 Jun 2002 22:36:52 +0000 (22:36 +0000)]
Backout revision 1.2 since it didn't work and replace it with a fix that
actually does work.  Ignore errors from kldload(2) if the errno value is
EEXIST.  It would help if this return value were documented in the
kldload(2) manual page.

22 years agoAdded support for 82545EM and 82546EB based adapters.
Prafulla Deuskar [Mon, 3 Jun 2002 22:30:51 +0000 (22:30 +0000)]
Added support for 82545EM and 82546EB based adapters.
Added Vlan support.

MFC after: 1 week

22 years agoUse a per-device worker thread to avoid blocking in mdstrategy()
Ian Dowse [Mon, 3 Jun 2002 22:09:04 +0000 (22:09 +0000)]
Use a per-device worker thread to avoid blocking in mdstrategy()
until the I/O completes. This fixes some easily reproducable deadlocks
that occur when using md(4) with GEOM.

Reviewed by: phk

22 years agoAdd a missing ``a''.
Brian Somers [Mon, 3 Jun 2002 21:36:20 +0000 (21:36 +0000)]
Add a missing ``a''.

22 years agoRecognize 0xbe as an uppercase character.
Anton Berezin [Mon, 3 Jun 2002 21:30:28 +0000 (21:30 +0000)]
Recognize 0xbe as an uppercase character.

Approved by: ache

22 years agoStop using the depreciated 'union wait' definitions, moving to a more
Garance A Drosehn [Mon, 3 Jun 2002 20:47:01 +0000 (20:47 +0000)]
Stop using the depreciated 'union wait' definitions, moving to a more
standard handling of wait()-related routines.

Submitted by: mike
MFC after: 2 weeks

22 years agoMake the manpage consistent with the code on the subject of comments, as to
Juli Mallett [Mon, 3 Jun 2002 20:35:35 +0000 (20:35 +0000)]
Make the manpage consistent with the code on the subject of comments, as to
not change the code to always do the "GNU" thing, as it's possible people
rely on BSD m4(1) traditionally resetting comment characters in case of no
arguments to the changecom function.

PR: bin/17480 (I think this satisfies the problem report)

22 years agoFix handling of the 'noError' variable. According to the code comments,
John Baldwin [Mon, 3 Jun 2002 19:42:49 +0000 (19:42 +0000)]
Fix handling of the 'noError' variable.  According to the code comments,
one can set the 'noError' variable to ignore any errors that occur for the
next command.  However, the code was only unsetting 'noError' when an error
actually occurred, so if you set 'noError', the next command completed ok,
and the command after that failed, the second command's failure would be
ignored.  This fixes this by performing the 'noError' check earlier and
then unsetting 'noError' after every command that is run.

Sponsored by: The Weather Channel

22 years agoAdd a 'mediaClose' script command to close the open media. An example use
John Baldwin [Mon, 3 Jun 2002 19:39:28 +0000 (19:39 +0000)]
Add a 'mediaClose' script command to close the open media.  An example use
would be to unmount the CD you installed from and prompt the user to
eject it before rebooting the machine.

Sponsored by: The Weather Channel

22 years agoCorrect bswap64() prototype.
Maxim Sobolev [Mon, 3 Jun 2002 19:04:10 +0000 (19:04 +0000)]
Correct bswap64() prototype.

Submitted by: glewis
MFC after: 1 day
(assuming that there is re's approval)

22 years agoDo not overwrite mm locale files.
Ruslan Ermilov [Mon, 3 Jun 2002 15:12:42 +0000 (15:12 +0000)]
Do not overwrite mm locale files.

22 years agoCorrect History: cal(1) appeared in V5, not V6.
Tim J. Robbins [Mon, 3 Jun 2002 15:02:02 +0000 (15:02 +0000)]
Correct History: cal(1) appeared in V5, not V6.

22 years agoCorrect history (again): V3 had a kill command, only it was in section 8,
Tim J. Robbins [Mon, 3 Jun 2002 14:59:49 +0000 (14:59 +0000)]
Correct history (again): V3 had a kill command, only it was in section 8,
not 1.

22 years agoCorrect History: nice(1) appeared in V4.
Tim J. Robbins [Mon, 3 Jun 2002 14:56:57 +0000 (14:56 +0000)]
Correct History: nice(1) appeared in V4.

22 years agoCorrect History: time(1) appeared at least as early as V3.
Tim J. Robbins [Mon, 3 Jun 2002 14:54:04 +0000 (14:54 +0000)]
Correct History: time(1) appeared at least as early as V3.

22 years agoReimplement FILES support using bsd.files.mk with the
Ruslan Ermilov [Mon, 3 Jun 2002 14:49:34 +0000 (14:49 +0000)]
Reimplement FILES support using bsd.files.mk with the
same set of features as in recently added bsd.incs.mk
(FILESGROUPS, accessibility from both bsd.prog.mk and
bsd.lib.mk, de-pessimized typical installation path,
etc.)  New standard targets: buildfiles, installfiles,
and files (buildfiles + installfiles).

22 years agoCorrect History: sync(8) appeared in V4.
Tim J. Robbins [Mon, 3 Jun 2002 14:48:33 +0000 (14:48 +0000)]
Correct History: sync(8) appeared in V4.

22 years agoCorrect History section: kill(1) appeared in V4, not V6.
Tim J. Robbins [Mon, 3 Jun 2002 14:45:20 +0000 (14:45 +0000)]
Correct History section: kill(1) appeared in V4, not V6.

22 years agoSort sections.
Tim J. Robbins [Mon, 3 Jun 2002 14:42:28 +0000 (14:42 +0000)]
Sort sections.

22 years agoCorrect HISTORY section - split(1) appeared at least as early as V3.
Tim J. Robbins [Mon, 3 Jun 2002 14:41:32 +0000 (14:41 +0000)]
Correct HISTORY section - split(1) appeared at least as early as V3.

22 years agoCall getmntinfo with MNT_NOWAIT to avoid hanging if any NFS servers
Ian Dowse [Mon, 3 Jun 2002 12:06:49 +0000 (12:06 +0000)]
Call getmntinfo with MNT_NOWAIT to avoid hanging if any NFS servers
are down. Avoid trying to send RPCs to the pidXXX@machine names
used in the special amd(8) mounts.

PR: bin/6183
Submitted by: Petr Lampa <lampa@fee.vutbr.cz>

22 years agoSkip %pN comes from ncurses
Andrey A. Chernov [Mon, 3 Jun 2002 10:44:39 +0000 (10:44 +0000)]
Skip %pN comes from ncurses

PR: 15418

22 years agoAdd pc98 subdirectory.
Yoshihiro Takahashi [Mon, 3 Jun 2002 09:58:44 +0000 (09:58 +0000)]
Add pc98 subdirectory.

22 years agoQuick and dirty convert to newbus. (Eventually 'eni.c' should go away.)
Matthew N. Dodd [Mon, 3 Jun 2002 09:16:52 +0000 (09:16 +0000)]
Quick and dirty convert to newbus. (Eventually 'eni.c' should go away.)

Module loads and unloads properly.

Thanks to Richard Hodges <rh@matriplex.com> for donating the hardware
to allow me to work on this driver.

22 years agoAdd new 'hea' driver files.
Matthew N. Dodd [Mon, 3 Jun 2002 09:14:12 +0000 (09:14 +0000)]
Add new 'hea' driver files.

22 years agoBuild a 'hea_pci' driver module.
Matthew N. Dodd [Mon, 3 Jun 2002 09:13:53 +0000 (09:13 +0000)]
Build a 'hea_pci' driver module.

22 years ago- Add 'hea'.
Matthew N. Dodd [Mon, 3 Jun 2002 09:13:22 +0000 (09:13 +0000)]
- Add 'hea'.
- Compile 'hfa' only on i386 (for now).

22 years agoRemove comment about NO_WERROR, since it no longer applies.
Robert Watson [Mon, 3 Jun 2002 00:21:13 +0000 (00:21 +0000)]
Remove comment about NO_WERROR, since it no longer applies.

Pointed out by: silby

22 years ago o Migrate vm_map_split() from vm_map.c to vm_object.c, renaming it
Alan Cox [Sun, 2 Jun 2002 23:54:09 +0000 (23:54 +0000)]
 o Migrate vm_map_split() from vm_map.c to vm_object.c, renaming it
   to vm_object_split().  Its interface should still be changed
   to resemble vm_object_shadow().

22 years agoConnect perl to the build.
Dag-Erling Smørgrav [Sun, 2 Jun 2002 22:43:17 +0000 (22:43 +0000)]
Connect perl to the build.

22 years agoANSIfy the one remaining K&R function.
Dag-Erling Smørgrav [Sun, 2 Jun 2002 21:57:28 +0000 (21:57 +0000)]
ANSIfy the one remaining K&R function.

22 years agoWhitespace nits.
Dag-Erling Smørgrav [Sun, 2 Jun 2002 21:55:58 +0000 (21:55 +0000)]
Whitespace nits.

22 years agoAdd support for 'j' flag. Simplify the size modifier code and reduce code
Dag-Erling Smørgrav [Sun, 2 Jun 2002 21:54:55 +0000 (21:54 +0000)]
Add support for 'j' flag.  Simplify the size modifier code and reduce code
duplication.  Also add support for 'n' specifier.

Reviewed by: bde

22 years agoFix typo in the BSD copyright: s/withough/without/
Jens Schweikhardt [Sun, 2 Jun 2002 20:05:59 +0000 (20:05 +0000)]
Fix typo in the BSD copyright: s/withough/without/

Spotted and suggested by: des
MFC after: 3 weeks

22 years ago o Style fixes to vm_map_split(), including the elimination of one variable
Alan Cox [Sun, 2 Jun 2002 19:32:05 +0000 (19:32 +0000)]
 o Style fixes to vm_map_split(), including the elimination of one variable
   declaration that shadows another.

Note: This function should really be vm_object_split(), not vm_map_split().

Reviewed by: md5

22 years agoFix breakage caused by allocating the I/O buffer. There was a
Marcel Moolenaar [Sun, 2 Jun 2002 19:20:37 +0000 (19:20 +0000)]
Fix breakage caused by allocating the I/O buffer. There was a
sizeof(buf) lurking around that I missed.

PR: 38811
Submitted by: Adrian Colley <aecolley@spamcop.net>

22 years agoTurn on the math function stub stubs.
David E. O'Brien [Sun, 2 Jun 2002 17:49:08 +0000 (17:49 +0000)]
Turn on the math function stub stubs.

Submitted by: Martin Blapp <mb@imp.ch>
I believe OK with: peter

22 years agoTwo markup fixes in sendmail section, add a missing word.
Bruce A. Mah [Sun, 2 Jun 2002 16:24:23 +0000 (16:24 +0000)]
Two markup fixes in sendmail section, add a missing word.

22 years agoFix error in ls -h relnote.
Bruce A. Mah [Sun, 2 Jun 2002 16:20:36 +0000 (16:20 +0000)]
Fix error in ls -h relnote.

Submitted by: Kurashina Hideyuki <ac14806t@st.nagaoka-ct.ac.jp>,
Ross Lippert <ripper@eskimo.com>

22 years agoAdd NCURSES_OSPEED replace command to MANFILTER
Andrey A. Chernov [Sun, 2 Jun 2002 16:11:57 +0000 (16:11 +0000)]
Add NCURSES_OSPEED replace command to MANFILTER

22 years agoDon't send a RAD_NAS_IP_ADDRESS attribute as RAD_NAS_IDENTIFIER is
Brian Somers [Sun, 2 Jun 2002 14:27:02 +0000 (14:27 +0000)]
Don't send a RAD_NAS_IP_ADDRESS attribute as RAD_NAS_IDENTIFIER is
sufficient.

In fact, using both breaks the radiator RADIUS daemon when used with
a db as it maps both attributes to the same field value and then
fails the insert.

I decided to remove RAD_NAS_IP_ADDRESS on the basis that rfc2138 says:

      An Access-Request MUST contain a User-Name attribute.  It SHOULD
      contain either a NAS-IP-Address attribute or NAS-Identifier
      attribute (or both, although that is not recommended).  It MUST

despite the fact that this not recommended bit was removed from the
updated rfc.

22 years agoSupport the SysV-style -exec utility args.. {} + function, required by
Tim J. Robbins [Sun, 2 Jun 2002 12:57:41 +0000 (12:57 +0000)]
Support the SysV-style -exec utility args.. {} + function, required by
SUSv3. This is similar to find foo -print0 | xargs -0 utility args.

22 years agoFix spelling errors: minumum, overriden, inheritted
Jens Schweikhardt [Sun, 2 Jun 2002 10:41:43 +0000 (10:41 +0000)]
Fix spelling errors: minumum, overriden, inheritted

MFC after: 3 weeks

22 years agoCorrect a bunch of typos. Translators can ignore this commit.
Jens Schweikhardt [Sun, 2 Jun 2002 10:27:41 +0000 (10:27 +0000)]
Correct a bunch of typos. Translators can ignore this commit.

MFC after: 3 weeks

22 years agoRemove a URL from the middle of the BSD copyright (a clicko? a pasto?).
Jens Schweikhardt [Sun, 2 Jun 2002 10:05:55 +0000 (10:05 +0000)]
Remove a URL from the middle of the BSD copyright (a clicko? a pasto?).
Fix typos:
s/evironment/environment
s/cont/const
s/_lonjmp/_longjmp

MFC after:  3 weeks

22 years agoDon't exit immediately if an error occurs, continue but exit non-zero.
Tim J. Robbins [Sun, 2 Jun 2002 09:32:39 +0000 (09:32 +0000)]
Don't exit immediately if an error occurs, continue but exit non-zero.

22 years agoFix typo causing ``fc -e'' to not work correctly. getopt() sets optarg,
Tim J. Robbins [Sun, 2 Jun 2002 08:34:09 +0000 (08:34 +0000)]
Fix typo causing ``fc -e'' to not work correctly. getopt() sets optarg,
not shoptarg.

22 years agoAdding an entry to the history with H_ENTER moves libedit's internal
Tim J. Robbins [Sun, 2 Jun 2002 08:27:04 +0000 (08:27 +0000)]
Adding an entry to the history with H_ENTER moves libedit's internal
history cursor. Reset the cursor after adding the entry to the history
when doing ``fc -s'' so the output is correct.

22 years ago o Condition vm_object_pmap_copy_1()'s compilation on the kernel
Alan Cox [Sun, 2 Jun 2002 06:31:41 +0000 (06:31 +0000)]
 o Condition vm_object_pmap_copy_1()'s compilation on the kernel
   option ENABLE_VFS_IOOPT.  Unless this option is in effect,
   vm_object_pmap_copy_1() is not used.

22 years agobde noticed that SOMAXCONN breaks pretty badly as an option for LINT.
Alfred Perlstein [Sun, 2 Jun 2002 04:32:52 +0000 (04:32 +0000)]
bde noticed that SOMAXCONN breaks pretty badly as an option for LINT.
so back it out.

22 years ago o Remove GIANT_REQUIRED from vm_map_zfini(), vm_map_zinit(),
Alan Cox [Sat, 1 Jun 2002 22:41:43 +0000 (22:41 +0000)]
 o Remove GIANT_REQUIRED from vm_map_zfini(), vm_map_zinit(),
   vm_map_create(), and vm_map_submap().
 o Make further use of a local variable in vm_map_entry_splay()
   that caches a reference to one of a vm_map_entry's children.
   (This reduces code size somewhat.)
 o Revert a part of revision 1.66, deinlining vmspace_pmap().
   (This function is MPSAFE.)

22 years agoFinish removing the share/man/tools/directory.
Bruce Evans [Sat, 1 Jun 2002 21:38:39 +0000 (21:38 +0000)]
Finish removing the share/man/tools/directory.

22 years agoBe more strict about namespaces.
Mike Barcroft [Sat, 1 Jun 2002 21:07:10 +0000 (21:07 +0000)]
Be more strict about namespaces.

Submitted by: wollman (mostly)

22 years agoBackout/modify previous revision:
Alfred Perlstein [Sat, 1 Jun 2002 20:54:21 +0000 (20:54 +0000)]
Backout/modify previous revision:
  "empty default cases shouldn't be removed, they should have a break;
  statement added to them."

Requested by: billf

22 years agoSilence warnings, remove some empty 'default' switch cases.
Alfred Perlstein [Sat, 1 Jun 2002 20:40:42 +0000 (20:40 +0000)]
Silence warnings, remove some empty 'default' switch cases.

22 years agoDeclare a variable sized array within a structure using [] rather than [0]
Alfred Perlstein [Sat, 1 Jun 2002 20:40:05 +0000 (20:40 +0000)]
Declare a variable sized array within a structure using [] rather than [0]
to silence warnings.

22 years agoSilence preprocessor warning, No need to use CONCAT with "," and "word".
Alfred Perlstein [Sat, 1 Jun 2002 20:22:33 +0000 (20:22 +0000)]
Silence preprocessor warning, No need to use CONCAT with "," and "word".