]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/log
FreeBSD/FreeBSD.git
23 years agoCosmetic and spelling fixes. Includes some MDOC policework.
markm [Mon, 19 Feb 2001 20:08:01 +0000 (20:08 +0000)]
Cosmetic and spelling fixes. Includes some MDOC policework.

Submitted by: ru (mostly)

23 years agoadd LC_MONETARY, LC_MESSAGES and LC_NUMERIC definitions for ru_RU.CP866 and
phantom [Mon, 19 Feb 2001 20:05:22 +0000 (20:05 +0000)]
add LC_MONETARY, LC_MESSAGES and LC_NUMERIC definitions for ru_RU.CP866 and
ru_RU.ISO_8859-5 locales

23 years agocleanup commentaries
phantom [Mon, 19 Feb 2001 19:09:00 +0000 (19:09 +0000)]
cleanup commentaries

23 years ago. add comment that 4 character of int_curr_symbol should be SPACE
phantom [Mon, 19 Feb 2001 18:55:34 +0000 (18:55 +0000)]
. add comment that 4 character of int_curr_symbol should be SPACE
. fix chinese locales to meet this requirement

23 years agoBack out rev 1.92
peter [Mon, 19 Feb 2001 18:27:42 +0000 (18:27 +0000)]
Back out rev 1.92

23 years agoChange default devfs permissions to the ones in MAKEDEV.
n_hibma [Mon, 19 Feb 2001 18:14:49 +0000 (18:14 +0000)]
Change default devfs permissions to the ones in MAKEDEV.

Suggested by: rwatson

23 years agoInstall manpages into machine-specific (i386) subdir.
ru [Mon, 19 Feb 2001 16:01:05 +0000 (16:01 +0000)]
Install manpages into machine-specific (i386) subdir.

23 years agoRemove (now unnecessary) MLINKS.
ru [Mon, 19 Feb 2001 15:52:38 +0000 (15:52 +0000)]
Remove (now unnecessary) MLINKS.

23 years agoRemoved all traces of T_ASTFLT (except for gaps where it was). It became
bde [Mon, 19 Feb 2001 15:47:38 +0000 (15:47 +0000)]
Removed all traces of T_ASTFLT (except for gaps where it was).  It became
unused except in dead code when ast() was split off from trap().

23 years agoAdd missing .../cat?/alpha directories.
ru [Mon, 19 Feb 2001 15:30:11 +0000 (15:30 +0000)]
Add missing .../cat?/alpha directories.

23 years agoActually make sure the make release line at the top isn't misleading.
asmodai [Mon, 19 Feb 2001 14:23:49 +0000 (14:23 +0000)]
Actually make sure the make release line at the top isn't misleading.

CVSROOT is mandatory.  Also note what CVSROOT has to be set to.

Found by: local make release hacking

23 years agoImplement one nice feature of original BSD man(1):
ru [Mon, 19 Feb 2001 14:19:57 +0000 (14:19 +0000)]
Implement one nice feature of original BSD man(1):

: As some manual pages are intended only for specific architectures,
: man searches any subdirectories, with the same name as the current
: architecture, in every directory which it searches.  Machine specific
: areas are checked before general areas.  The current machine type may
: be overridden by setting the environment variable MACHINE to the name
: of a specific architecture.

23 years agoFixed the order of environment variables list.
ru [Mon, 19 Feb 2001 14:02:48 +0000 (14:02 +0000)]
Fixed the order of environment variables list.

23 years agoImprove pkg_delete(1) behaviour when deleting several packages at once.
sobomax [Mon, 19 Feb 2001 13:26:13 +0000 (13:26 +0000)]
Improve pkg_delete(1) behaviour when deleting several packages at once.

Instead of trying to delete packages in the same order as they were specified
in the command line, reorder deletion in such a way that if package A depends
on package B then package A will be deleted before B no matter in which order
they were specified in the command line.

Reviewed by: jkh, will
Approved by: jkh

23 years agoEnable AI_ADDRCONFIG as a valid flag of getaddrinfo(3). Some
ume [Mon, 19 Feb 2001 13:13:51 +0000 (13:13 +0000)]
Enable AI_ADDRCONFIG as a valid flag of getaddrinfo(3).  Some
applications specify AI_ADDRCONFIG and fail to run under FreeBSD.
Latest mews is known.  Now, getaddrinfo(3) behaves according to
AI_ADDRCONFIG.

23 years agoCreate directory infrastructure required to format, display
ru [Mon, 19 Feb 2001 13:08:14 +0000 (13:08 +0000)]
Create directory infrastructure required to format, display
and store preformatted /usr/share/man manual pages in 8-bit
iso-8859-1 charset for all *_*.ISO_8859-1 locales.

Requested by: des
Input from: ache

23 years agoThere is an arbitrary file size limit in ctm of 20MB. By my reckoning,
mckay [Mon, 19 Feb 2001 12:04:46 +0000 (12:04 +0000)]
There is an arbitrary file size limit in ctm of 20MB.  By my reckoning,
ports/INDEX,v is currently 19.97MB and will blow this limit on the next
update.  Let's try doubling the limit again, to give us time to get
around to removing the limit altogether.

23 years agoDo not output extra comma before "and" for references with two authors.
ru [Mon, 19 Feb 2001 11:58:15 +0000 (11:58 +0000)]
Do not output extra comma before "and" for references with two authors.

Example:
.Rs
.%A Author1
.%A Author2
.%B Book
.Re

Produced:
Author1, and Author2, Book.

Now produces:
Author1 and Author2, Book.

Ported from: mdocNG

23 years agomdoc(7) police: well-known section name is EXAMPLES, not EXAMPLE.
ru [Mon, 19 Feb 2001 10:49:15 +0000 (10:49 +0000)]
mdoc(7) police: well-known section name is EXAMPLES, not EXAMPLE.

23 years agoFixed a longstanding latency bug in signal delivery. When a signal
bde [Mon, 19 Feb 2001 09:40:58 +0000 (09:40 +0000)]
Fixed a longstanding latency bug in signal delivery.  When a signal
is sent to a process, psignal() needs to schedule an AST for the
process if the process is runnable, not just if it is current, so that
pending signals get checked for on the next return of the process to
user mode.  This wasn't practical until recently because the AST flag
was per-cpu so setting it for a non-current process would usually just
cause a bogus AST for the current process.

For non-current processes looping in user mode, it took accidental
(?) magic to deliver signals at all.  Signals were usually delivered
late as a side effect of rescheduling (need_resched() sets astpending,
etc.).  In pre-SMPng, delivery was delayed by at most 1 quantum (the
need_resched() call in roundrobin() is certain to occur within 1
quantum for looping processes).  In -current, things are complicated
by normal interrupt handlers being threads.  Missing handling of the
complications makes roundrobin() a bogus no-op, but preemptive
scheduling sort of works anyway due to even larger bogons elsewhere.

23 years agoAdd 500.queuerun
ache [Mon, 19 Feb 2001 07:12:37 +0000 (07:12 +0000)]
Add 500.queuerun

23 years agoDeal properly with "0"
ache [Mon, 19 Feb 2001 06:19:51 +0000 (06:19 +0000)]
Deal properly with "0"

23 years agoUse ttymalloc() instead of roll-our-own.
peter [Mon, 19 Feb 2001 04:53:55 +0000 (04:53 +0000)]
Use ttymalloc() instead of roll-our-own.

23 years ago${BDECFLAGS} work. And fix a real error in the process. A "MAXUSERS"
peter [Mon, 19 Feb 2001 04:43:21 +0000 (04:43 +0000)]
${BDECFLAGS} work.  And fix a real error in the process.  A "MAXUSERS"
string could have been passed to free();  There are some warnings here
I am not sure how to fix as they are in the lex scanner code, etc.

23 years agoChanged the aston() family to operate on a specified process instead of
bde [Mon, 19 Feb 2001 04:15:59 +0000 (04:15 +0000)]
Changed the aston() family to operate on a specified process instead of
always on curproc.  This is needed to implement signal delivery properly
(see a future log message for kern_sig.c).

Debogotified the definition of aston().  aston() was defined in terms
of signotify() (perhaps because only the latter already operated on
a specified process), but aston() is the primitive.

Similar changes are needed in the ia64 versions of cpu.h and trap.c.
I didn't make them because the ia64 is missing the prerequisite changes
to make astpending and need_resched per-process and those changes are
too large to make without testing.

23 years agoSlight improvement to previous checkin.
archie [Mon, 19 Feb 2001 04:06:30 +0000 (04:06 +0000)]
Slight improvement to previous checkin.

23 years agoAdd an example showing how to configure a node from the command line.
archie [Mon, 19 Feb 2001 04:00:52 +0000 (04:00 +0000)]
Add an example showing how to configure a node from the command line.

23 years agoIntroduce support for using OpenSSL ASM optimizations. This is done
kris [Mon, 19 Feb 2001 03:59:05 +0000 (03:59 +0000)]
Introduce support for using OpenSSL ASM optimizations.  This is done
through the use of a new build directive, MACHINE_CPU, which contains a
list of the CPU generations/features for which optimizations are desired.
This feature will be extended to cover the ports tree in the future.

Currently OpenSSL provides optimizations for i386, i586 and i686-class
CPUs. Currently it has not been tested on an i386 or i486.

Teach make(1) to provide sensible defaults for MACHINE_CPU if it is not
defined (namely, the lowest common denominator CPU we support for each
architecture).  Currently this is i386 for the i386 architecture and ev4
for the alpha.  sys.mk also sets the variable as a last resort for
consistency with MACHINE_ARCH and bootstrapping from very old versions of
make.

Benchmarks show a significant speed increase even in the i386 case, with
additional improvements for i586 and i686 systems.  For maximum performance
define MACHINE_CPU=i686 i586 i386 in /etc/make.conf.

Based on a patch submitted by:  Mike Silbersack <silby@silby.com>
Reviewed by:    current

23 years agoFixed style bugs in clock.c rev.1.164 and cpu.h rev.1.52-1.53 -- declare
bde [Mon, 19 Feb 2001 03:00:34 +0000 (03:00 +0000)]
Fixed style bugs in clock.c rev.1.164 and cpu.h rev.1.52-1.53 -- declare
tsc_present in the right places (together with other variables of the
same linkage), and don't use messy ifdefs just to avoid exporting it in
some cases.

23 years agoMove the sendmail -q from cron to periodic, as suggested by a few people.
peter [Mon, 19 Feb 2001 02:47:42 +0000 (02:47 +0000)]
Move the sendmail -q from cron to periodic, as suggested by a few people.
This has the benefit of adding a random start time element as daily
processing takes a different amount of time on different machines.

23 years agoHave yacc use a prototype for yygrowstack(void) on ANSI compilers.
peter [Mon, 19 Feb 2001 01:10:01 +0000 (01:10 +0000)]
Have yacc use a prototype for yygrowstack(void) on ANSI compilers.
This fixes a gcc warning with -Wmissing-prototypes.

23 years agoDevices are NOT compiled with the "special c2 option -i"..
peter [Sun, 18 Feb 2001 22:42:15 +0000 (22:42 +0000)]
Devices are NOT compiled with the "special c2 option -i"..

23 years agoBe extra certain that "#include <osreldate.h>" must not be used in
peter [Sun, 18 Feb 2001 20:44:06 +0000 (20:44 +0000)]
Be extra certain that "#include <osreldate.h>" must not be used in
kernel code.

23 years ago"Fix" the machine/lock.h problem in modules depend with a sledge hammer.
peter [Sun, 18 Feb 2001 20:23:22 +0000 (20:23 +0000)]
"Fix" the machine/lock.h problem in modules depend with a sledge hammer.
This forces bsd.dep.mk to rebuild the .depend file.

23 years agoDocument the entropy device.
markm [Sun, 18 Feb 2001 18:08:43 +0000 (18:08 +0000)]
Document the entropy device.

If you want to know how to harvest network traffic and interrupts,
READ HERE!

23 years agoSet the interrupt-harvesting bit for those hardware items that I
markm [Sun, 18 Feb 2001 18:02:15 +0000 (18:02 +0000)]
Set the interrupt-harvesting bit for those hardware items that I
can actually test.

Nothing will happen until the sysadmin turns on intr-harvesting
on her computer.

23 years agoInsert entropy harvesting calls for network traffic. By
markm [Sun, 18 Feb 2001 17:54:52 +0000 (17:54 +0000)]
Insert entropy harvesting calls for network traffic. By
default, no entropy will be harvested.

23 years agoAllow the superuser to prefent all interrupt harvesting on
markm [Sun, 18 Feb 2001 17:47:55 +0000 (17:47 +0000)]
Allow the superuser to prefent all interrupt harvesting on
her system.

23 years agoProvide the infrastructure for sysadmins to select the broad class
markm [Sun, 18 Feb 2001 17:40:47 +0000 (17:40 +0000)]
Provide the infrastructure for sysadmins to select the broad class
of entropy harvesting they wish to perform: "ethernet" (LAN),
point-to-point and interrupt.

23 years agoIntroduce $TAR_RSH to enable use of ssh as transport.
ume [Sun, 18 Feb 2001 17:30:29 +0000 (17:30 +0000)]
Introduce $TAR_RSH to enable use of ssh as transport.

23 years agoEncapselate midi_info, nmidi and nsynth into midi.c.
tanimura [Sun, 18 Feb 2001 15:58:56 +0000 (15:58 +0000)]
Encapselate midi_info, nmidi and nsynth into midi.c.

23 years agoSwitch to using a struct xucred instead of a struct xucred when not
green [Sun, 18 Feb 2001 13:30:20 +0000 (13:30 +0000)]
Switch to using a struct xucred instead of a struct xucred when not
actually in the kernel.  This structure is a different size than
what is currently in -CURRENT, but should hopefully be the last time
any application breakage is caused there.  As soon as any major
inconveniences are removed, the definition of the in-kernel struct
ucred should be conditionalized upon defined(_KERNEL).

This also changes struct export_args to remove dependency on the
constantly-changing struct ucred, as well as limiting the bounds
of the size fields to the correct size.  This means: a) mountd and
friends won't break all the time, b) mountd and friends won't crash
the kernel all the time if they don't know what they're doing wrt
actual struct export_args layout.

Reviewed by: bde

23 years agoZap LIBTCL, it's been superfluous for several years.
kris [Sun, 18 Feb 2001 11:58:54 +0000 (11:58 +0000)]
Zap LIBTCL, it's been superfluous for several years.

23 years agoAdd yesstr/nostr.
abial [Sun, 18 Feb 2001 11:17:41 +0000 (11:17 +0000)]
Add yesstr/nostr.

23 years agoAdjust columns for wide nicenesses in 'top -S'.
markm [Sun, 18 Feb 2001 11:08:47 +0000 (11:08 +0000)]
Adjust columns for wide nicenesses in 'top -S'.

23 years agoPreceed/preceeding are not english words. Use precede and preceding.
asmodai [Sun, 18 Feb 2001 10:44:00 +0000 (10:44 +0000)]
Preceed/preceeding are not english words.  Use precede and preceding.

Add $FreeBSD$.

23 years agoPreceed/preceeding are not english words. Use precede and preceding.
asmodai [Sun, 18 Feb 2001 10:43:53 +0000 (10:43 +0000)]
Preceed/preceeding are not english words.  Use precede and preceding.

23 years agoPreceed/preceeding are not english words. Use precede or preceding.
asmodai [Sun, 18 Feb 2001 10:25:42 +0000 (10:25 +0000)]
Preceed/preceeding are not english words.  Use precede or preceding.

23 years agoPreceed/preceeding are not english words. Use precede or preceding.
asmodai [Sun, 18 Feb 2001 10:25:31 +0000 (10:25 +0000)]
Preceed/preceeding are not english words.  Use precede or preceding.

Add $FreeBSD$.

23 years agoRemove unneeded loop increment in src/sys/netinet/in_pcb.c:in_pcbnotify
phk [Sun, 18 Feb 2001 09:34:55 +0000 (09:34 +0000)]
Remove unneeded loop increment in src/sys/netinet/in_pcb.c:in_pcbnotify

Add new PRC_UNREACH_ADMIN_PROHIB in sys/sys/protosw.h

Remove condition on TCP in src/sys/netinet/ip_icmp.c:icmp_input

In src/sys/netinet/ip_icmp.c:icmp_input set code = PRC_UNREACH_ADMIN_PROHIB
or PRC_UNREACH_HOST for all unreachables except ICMP_UNREACH_NEEDFRAG

Rename sysctl icmp_admin_prohib_like_rst to icmp_unreach_like_rst
to reflect the fact that we also react on ICMP unreachables that
are not administrative prohibited.  Also update the comments to
reflect this.

In sys/netinet/tcp_subr.c:tcp_ctlinput add code to treat
PRC_UNREACH_ADMIN_PROHIB and PRC_UNREACH_HOST different.

PR: 23986
Submitted by: Jesper Skriver <jesper@skriver.dk>

23 years agoRemove a debug printf.
phk [Sun, 18 Feb 2001 09:16:49 +0000 (09:16 +0000)]
Remove a debug printf.

23 years agoDuh! forgot to add BSD_daemon to the mtree files.
phk [Sun, 18 Feb 2001 08:18:44 +0000 (08:18 +0000)]
Duh!  forgot to add BSD_daemon to the mtree files.

Submitted by: "Niels Chr. Bank-Pedersen" <ncbp@bank-pedersen.dk>

23 years agoDo not compile INET6 support if RELEASE_CRUNCH is defined
luigi [Sun, 18 Feb 2001 07:28:31 +0000 (07:28 +0000)]
Do not compile INET6 support if RELEASE_CRUNCH is defined
(used by install floppy/picobsd)

23 years agoAdd a check in the interrupt service routine to return quickly in
luigi [Sun, 18 Feb 2001 07:21:28 +0000 (07:21 +0000)]
Add a check in the interrupt service routine to return quickly in
case there is nothing to do. This happens normally when the card shares
the interrupt line with other devices.

This code saves a couple of microseconds per interrupt even on a
fast CPU. You normally would not care, except under heavy tinygram
traffic where you can have some 50-100.000 interrupts per second...

On passing, correct a spelling error.

23 years agoremove unused data structure definition, and corresponding macro into*()
luigi [Sun, 18 Feb 2001 07:10:03 +0000 (07:10 +0000)]
remove unused data structure definition, and corresponding macro into*()

23 years agoEnable command line editing in the shell
luigi [Sun, 18 Feb 2001 06:54:07 +0000 (06:54 +0000)]
Enable command line editing in the shell

23 years agoAdd hu_HU
ache [Sun, 18 Feb 2001 06:51:01 +0000 (06:51 +0000)]
Add hu_HU

Submitted by: Szilveszter Adam <sziszi@petra.hos.u-szeged.hu>

23 years agoMake correct entries for atapi disks
luigi [Sun, 18 Feb 2001 06:50:40 +0000 (06:50 +0000)]
Make correct entries for atapi disks

23 years agoMake the right device entries for atapi disks
luigi [Sun, 18 Feb 2001 06:48:25 +0000 (06:48 +0000)]
Make the right device entries for atapi disks

23 years agoBump version to 0.500 -- not that it means much, but at least
luigi [Sun, 18 Feb 2001 06:46:20 +0000 (06:46 +0000)]
Bump version to 0.500 -- not that it means much, but at least
gives some idea on the age of the source used for the build.

23 years agoSilence -Wnon-const-format
kris [Sun, 18 Feb 2001 04:51:47 +0000 (04:51 +0000)]
Silence -Wnon-const-format

23 years agoRemove the parts of the patch that was committed to the XFree86 port.
obrien [Sun, 18 Feb 2001 04:49:42 +0000 (04:49 +0000)]
Remove the parts of the patch that was committed to the XFree86 port.

23 years agoBack out snprintf -> sprintf change until I have time to look at it.
kris [Sun, 18 Feb 2001 04:07:50 +0000 (04:07 +0000)]
Back out snprintf -> sprintf change until I have time to look at it.

23 years agoResolve conflicts
kris [Sun, 18 Feb 2001 03:23:30 +0000 (03:23 +0000)]
Resolve conflicts

23 years agoThis commit was generated by cvs2svn to compensate for changes in r72613,
kris [Sun, 18 Feb 2001 03:17:36 +0000 (03:17 +0000)]
This commit was generated by cvs2svn to compensate for changes in r72613,
which included commits to RCS files with non-trunk default branches.

23 years agoImport of OpenSSL 0.9.6-STABLE snapshot dated 2001-02-10
kris [Sun, 18 Feb 2001 03:17:36 +0000 (03:17 +0000)]
Import of OpenSSL 0.9.6-STABLE snapshot dated 2001-02-10

23 years agoAdded a dummy lookup vop. Specfs was broken by removing its dummy
bde [Sun, 18 Feb 2001 02:22:58 +0000 (02:22 +0000)]
Added a dummy lookup vop.  Specfs was broken by removing its dummy
lookup vop so that it defaulted to using vop_eopnotsupp for strange
lookups like the ones for open("/dev/null/", ...) and stat("/dev/null/",
...).  This mainly caused the wrong errno to be returned by vfs syscalls
(EOPNOTSUPP is not in POSIX, and is not documented in connection with
specfs in open.2 and is not documented in stat.2 at all).  Also, lookup
vops are apparently required to set *ap->a_vpp to NULL on error, but
vop_eopnotsupp is too broken to do this.

23 years ago120 seconds is not 3 minutes
kris [Sun, 18 Feb 2001 02:11:37 +0000 (02:11 +0000)]
120 seconds is not 3 minutes

23 years agoMake ConnectionsPerPeriod non-fatal for real.
ps [Sun, 18 Feb 2001 01:33:31 +0000 (01:33 +0000)]
Make ConnectionsPerPeriod non-fatal for real.

23 years agoFixed style bug (bloat of a line length past 80 columns) in previous commit.
bde [Sun, 18 Feb 2001 01:26:17 +0000 (01:26 +0000)]
Fixed style bug (bloat of a line length past 80 columns) in previous commit.

23 years agoQuick fix for attempts to free non-malloc()ed memory. The variables
bde [Sun, 18 Feb 2001 01:06:13 +0000 (01:06 +0000)]
Quick fix for attempts to free non-malloc()ed memory.  The variables
current_file_name and current_link_name sometimes point into the
middle of malloc()ed memory and sometimes point to alloca()ed memory,
but free() is sometimes called on them.  This seems to be harmless
for the usual tar operations, but it is usually fatal for `tar -W'.
E.g., for `cd /etc; tar Wcf /tmp/foo rc', at the start of
verify_volume(), current_file_name points to alloca()ed memory, and
tar attempts to free it.

23 years agoLog the console output to "/var/log/console.log", not "/var/log/console"
phk [Sat, 17 Feb 2001 20:27:58 +0000 (20:27 +0000)]
Log the console output to "/var/log/console.log", not "/var/log/console"
(MFC candidate)

23 years agoMFS: getpackagesite() from RELENG_4 that allows the code to be the same.
obrien [Sat, 17 Feb 2001 20:04:41 +0000 (20:04 +0000)]
MFS: getpackagesite() from RELENG_4 that allows the code to be the same.

23 years agoFix tab breakage from last commit.
jlemon [Sat, 17 Feb 2001 19:40:22 +0000 (19:40 +0000)]
Fix tab breakage from last commit.

Spotted by: bde

23 years agoAdd some FreeBSD logo material to the tree:
phk [Sat, 17 Feb 2001 19:14:42 +0000 (19:14 +0000)]
Add some FreeBSD logo material to the tree:

  "FreeBSD.pfa" - the (postscript) font used to write "FreeBSD".
  "beastie.fig" - a 4.3 BSD style Daemon in vector graphic.
  "beastie.eps" - same converted to encapsulated postscript.
  "poster.sh" - an example how to use this stuff.
  "README" - the full story.

23 years agoAdd LC_MESSAGES, LC_MONETARY, and LC_NUMERIC supports to
keith [Sat, 17 Feb 2001 18:45:08 +0000 (18:45 +0000)]
Add LC_MESSAGES, LC_MONETARY, and LC_NUMERIC supports to
both zh_TW.Big5 and zh_CN.EUC locales.

Approved by: ache

23 years agoThis commit was generated by cvs2svn to compensate for changes in r72571,
asmodai [Sat, 17 Feb 2001 15:48:22 +0000 (15:48 +0000)]
This commit was generated by cvs2svn to compensate for changes in r72571,
which included commits to RCS files with non-trunk default branches.

23 years agoVirgin import of ISC BIND v8.2.3-REL docs
asmodai [Sat, 17 Feb 2001 15:48:22 +0000 (15:48 +0000)]
Virgin import of ISC BIND v8.2.3-REL docs

23 years agoRemove old DNS setup document. We have long past the times where
asmodai [Sat, 17 Feb 2001 15:19:00 +0000 (15:19 +0000)]
Remove old DNS setup document.  We have long past the times where
BIND 4 was the thing of the day.

23 years agoCorrect disordering which is corresponding to bde's fix to
ume [Sat, 17 Feb 2001 14:51:11 +0000 (14:51 +0000)]
Correct disordering which is corresponding to bde's fix to
i386/include/ansi.h.

23 years agoCRNCYSTR: determine '.' too
ache [Sat, 17 Feb 2001 11:15:30 +0000 (11:15 +0000)]
CRNCYSTR: determine '.' too

23 years agoMake `cc' and `cpp0' staticly linked binaries in this development version
obrien [Sat, 17 Feb 2001 09:46:41 +0000 (09:46 +0000)]
Make `cc' and `cpp0' staticly linked binaries in this development version
of the OS.

23 years agoMerge rev 1.2 (-fformat-extensions); 1.{7,9} (complain about -O2 on the
obrien [Sat, 17 Feb 2001 09:06:31 +0000 (09:06 +0000)]
Merge rev 1.2 (-fformat-extensions); 1.{7,9} (complain about -O2 on the
Alpha & FORCE_OPTIMIZATION_DOWNGRADE); 1.8 (-Wnon-const-format)
into GCC 2.95.3(RC#3).

23 years agoAdd uk_UA
ache [Sat, 17 Feb 2001 08:35:14 +0000 (08:35 +0000)]
Add uk_UA

Submitted by: Alexander Matey <matey@cis.ohio-state.edu>

23 years agoMerge gcc-2.95.3-test3 changes onto mainline. Bump FreeBSD cc version.
obrien [Sat, 17 Feb 2001 08:35:00 +0000 (08:35 +0000)]
Merge gcc-2.95.3-test3 changes onto mainline. Bump FreeBSD cc version.

23 years agoThis commit was generated by cvs2svn to compensate for changes in r72562,
obrien [Sat, 17 Feb 2001 08:34:50 +0000 (08:34 +0000)]
This commit was generated by cvs2svn to compensate for changes in r72562,
which included commits to RCS files with non-trunk default branches.

23 years agoEnlist the FreeBSD-CURRENT users as testers of GCC 2.95.3 Release Candidate #3
obrien [Sat, 17 Feb 2001 08:34:50 +0000 (08:34 +0000)]
Enlist the FreeBSD-CURRENT users as testers of GCC 2.95.3 Release Candidate #3

23 years agoImplement CRNCYSTR
ache [Sat, 17 Feb 2001 07:35:01 +0000 (07:35 +0000)]
Implement CRNCYSTR

23 years agoRevert gensetdefs.pl reversal.
marcel [Sat, 17 Feb 2001 07:26:57 +0000 (07:26 +0000)]
Revert gensetdefs.pl reversal.

23 years agoFixed some style bugs (bogus cloned Id, null overrides of defaults, and
bde [Sat, 17 Feb 2001 06:20:14 +0000 (06:20 +0000)]
Fixed some style bugs (bogus cloned Id, null overrides of defaults, and
the usual style bugs for DPADD/LDADD).

23 years agoRemoved some garbage (genassym(8) and its infrastructure).
bde [Sat, 17 Feb 2001 06:06:14 +0000 (06:06 +0000)]
Removed some garbage (genassym(8) and its infrastructure).

23 years agoFixed unsorting of prototypes in previous commit. Is it too much to
bde [Sat, 17 Feb 2001 05:40:52 +0000 (05:40 +0000)]
Fixed unsorting of prototypes in previous commit.  Is it too much to
ask for 1-line commits to be correctly ordered?

23 years agoFixed unsorting of prototypes in previous commit. Fixed older unsorting.
bde [Sat, 17 Feb 2001 05:35:56 +0000 (05:35 +0000)]
Fixed unsorting of prototypes in previous commit.  Fixed older unsorting.

23 years agoFixed disordering in previous commit. "Fixed" a null comment in previous
bde [Sat, 17 Feb 2001 03:57:38 +0000 (03:57 +0000)]
Fixed disordering in previous commit.  "Fixed" a null comment in previous
commit by removing it.

23 years agoFixed disordering in previous commit.
bde [Sat, 17 Feb 2001 03:49:24 +0000 (03:49 +0000)]
Fixed disordering in previous commit.

23 years agoLimit CHANNEL_B_PRIMARY's effect to twin channel adapters where we can easily
gibbs [Sat, 17 Feb 2001 01:53:22 +0000 (01:53 +0000)]
Limit CHANNEL_B_PRIMARY's effect to twin channel adapters where we can easily
register our sub-busses in the reversed order.  In the future, we may provide
a hint to CAM on how to order the scans for multi-function adapters that also
set this flag, but trying to do it the "twin channel" way will lead to
a panic.

23 years agoExtra needs to be initialized for our usual pool of FILEs. This was
imp [Fri, 16 Feb 2001 21:09:49 +0000 (21:09 +0000)]
Extra needs to be initialized for our usual pool of FILEs.  This was
causing some versions of as to dump core.  This survived make
buildworld/installworld and the building gettext port afterwards.

Submitted by: <nnd@mail.nsk.ru> "N.Dudorov"
Reviewed by: "Daniel M. Eischen" <eischen@vigrid.com>

23 years agoFix an erroneous comment and two style(9) bugs.
archie [Fri, 16 Feb 2001 17:37:31 +0000 (17:37 +0000)]
Fix an erroneous comment and two style(9) bugs.

23 years agoAdd mutexes to the entire bpf subsystem to make it MPSAFE.
jlemon [Fri, 16 Feb 2001 17:10:28 +0000 (17:10 +0000)]
Add mutexes to the entire bpf subsystem to make it MPSAFE.

Previously reviewed by: jhb, bde

23 years agoAllow debugging output to be controlled on a per-syscall granularity.
jlemon [Fri, 16 Feb 2001 16:40:43 +0000 (16:40 +0000)]
Allow debugging output to be controlled on a per-syscall granularity.
Also clean up debugging output in a slightly more uniform fashion.

The default behavior remains the same (all debugging output is turned on)