]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/log
FreeBSD/FreeBSD.git
23 years agoDon't compile libgcc_r twice.
obrien [Sat, 25 Nov 2000 13:04:08 +0000 (13:04 +0000)]
Don't compile libgcc_r twice.

23 years agoThis commit was generated by cvs2svn to compensate for changes in r69159,
obrien [Sat, 25 Nov 2000 10:29:36 +0000 (10:29 +0000)]
This commit was generated by cvs2svn to compensate for changes in r69159,
which included commits to RCS files with non-trunk default branches.

23 years agoImport of GNU Binutils version 2.10.1.
obrien [Sat, 25 Nov 2000 10:29:36 +0000 (10:29 +0000)]
Import of GNU Binutils version 2.10.1.
Believe it or not, this is heavily stripped down.

23 years agoRemove binutils 2.9.1 files that are not part of 2.10.x.
obrien [Sat, 25 Nov 2000 10:23:21 +0000 (10:23 +0000)]
Remove binutils 2.9.1 files that are not part of 2.10.x.

23 years agoRemove binutils 2.9.1 files that are not part of 2.10.x.
obrien [Sat, 25 Nov 2000 09:57:13 +0000 (09:57 +0000)]
Remove binutils 2.9.1 files that are not part of 2.10.x.

23 years agoFix a mangled $Id string
peter [Sat, 25 Nov 2000 09:10:55 +0000 (09:10 +0000)]
Fix a mangled $Id string

23 years agoGC some defunct prototypes
peter [Sat, 25 Nov 2000 08:13:33 +0000 (08:13 +0000)]
GC some defunct prototypes

23 years agoChange the driver to allocate its own callout structure, and modify
jlemon [Sat, 25 Nov 2000 08:00:10 +0000 (08:00 +0000)]
Change the driver to allocate its own callout structure, and modify
the interface to use callout_* instead of timeout().  Also add an
IS_MPSAFE #define (currently off) which will mark the driver as mpsafe
to the upper layers.

23 years agoRemove unused variable, spl() manipulation isn't done for the ifq now.
jlemon [Sat, 25 Nov 2000 07:50:27 +0000 (07:50 +0000)]
Remove unused variable, spl() manipulation isn't done for the ifq now.

23 years agoLock down the network interface queues. The queue mutex must be obtained
jlemon [Sat, 25 Nov 2000 07:35:38 +0000 (07:35 +0000)]
Lock down the network interface queues.   The queue mutex must be obtained
before adding/removing packets from the queue.  Also, the if_obytes and
if_omcasts fields should only be manipulated under protection of the mutex.

IF_ENQUEUE, IF_PREPEND, and IF_DEQUEUE perform all necessary locking on
the queue.  An IF_LOCK macro is provided, as well as the old (mutex-less)
versions of the macros in the form _IF_ENQUEUE, _IF_QFULL, for code which
needs them, but their use is discouraged.

Two new macros are introduced: IF_DRAIN() to drain a queue, and IF_HANDOFF,
which takes care of locking/enqueue, and also statistics updating/start
if necessary.

23 years agoMake sn_pccard_products[] static
peter [Sat, 25 Nov 2000 07:25:45 +0000 (07:25 +0000)]
Make sn_pccard_products[] static

23 years agoArgh, I have fixed this cut/paste error twice before. I must have
peter [Sat, 25 Nov 2000 07:25:08 +0000 (07:25 +0000)]
Argh, I have fixed this cut/paste error twice before. I must have
committed the wrong patch. :-(  sn_pccard_products[] should have
been static anyway.

23 years agoUpdate to reflect the disappearance of getsock().
jlemon [Sat, 25 Nov 2000 07:16:06 +0000 (07:16 +0000)]
Update to reflect the disappearance of getsock().

Found by:  LINT

23 years agoCorrect a misnamed argument hidden behind a #ifdef DEBUG
jlemon [Sat, 25 Nov 2000 07:04:43 +0000 (07:04 +0000)]
Correct a misnamed argument hidden behind a #ifdef DEBUG

Found by:  LINT

23 years agoRevert the last commit to the callout interface, and add a flag to
jlemon [Sat, 25 Nov 2000 06:22:16 +0000 (06:22 +0000)]
Revert the last commit to the callout interface, and add a flag to
callout_init() indicating whether the callout is safe or not.  Update
the callers of callout_init() to reflect the new interface.

Okayed by: Jake

23 years agoDon't attach the interface twice. While I'm here, add a driver
jlemon [Sat, 25 Nov 2000 06:04:18 +0000 (06:04 +0000)]
Don't attach the interface twice.  While I'm here, add a driver
mutex.

23 years agoSecurity fix: correctly set groups according to the user. Previously,
green [Sat, 25 Nov 2000 04:13:05 +0000 (04:13 +0000)]
Security fix: correctly set groups according to the user.  Previously,
root's groups' permissions were being used, so a user could read up to
16 (excluding initial whitespace) bytes of e.g. a wheel-accessible file.

Also, don't allow blocking on the opening of ~/.fakeid, so replace a fopen()
with open() and fdopen().  I knew I'd be going to hell for using C file
streams instead of POSIX syscalls...

23 years agoo Make systat/vmstat.c use sysctl() to retrieve cp_time, bufspace,
rwatson [Sat, 25 Nov 2000 03:53:42 +0000 (03:53 +0000)]
o Make systat/vmstat.c use sysctl() to retrieve cp_time, bufspace,
  maxvnodes, numvnodes, freevnodes, nchstats, and numdirtybuffers.
o Make the hw.ncpu error checking code a little more rigorous by
  sanity checking the returned data size.
o Didn't fix machine-dependent non-sysctl-exported variables:
  intrnames, eintrnames, intrcnt, eintrcnt, as these variables are
  defined and exported from machine-dependent kernel code in
  assembly.  This should probably be fixed somehow.

23 years agoo make systat/pigs.c use syctl() to retrieve cp_time, fscale, and ccpu
rwatson [Sat, 25 Nov 2000 03:49:42 +0000 (03:49 +0000)]
o make systat/pigs.c use syctl() to retrieve cp_time, fscale, and ccpu
  instead of using kmem.

23 years agoo Make systat/iostat.c use sysctl() to retrieve cp_time instead of
rwatson [Sat, 25 Nov 2000 03:47:36 +0000 (03:47 +0000)]
o Make systat/iostat.c use sysctl() to retrieve cp_time instead of
  kmem.

23 years agoo Make systat use sysctl() to retrieve hz and stathz, instead of
rwatson [Sat, 25 Nov 2000 03:46:45 +0000 (03:46 +0000)]
o Make systat use sysctl() to retrieve hz and stathz, instead of
  using kmem.

23 years agoRegenerate. Note that pccarddevs_data.h is not used.
peter [Sat, 25 Nov 2000 03:43:37 +0000 (03:43 +0000)]
Regenerate.  Note that pccarddevs_data.h is not used.

23 years agoAdd Kingston and the KNE-PC2 card
peter [Sat, 25 Nov 2000 03:42:06 +0000 (03:42 +0000)]
Add Kingston and the KNE-PC2 card

23 years agoUpdate the ed driver to probe and attach under a NEWCARD kernel (I was
peter [Sat, 25 Nov 2000 03:36:09 +0000 (03:36 +0000)]
Update the ed driver to probe and attach under a NEWCARD kernel (I was
using a cardbus based system with pccbb providing the pcic interface).
Something isn't quite right.. when the driver allocates and activates
its resources, the IO space that was requested reads as all zeros (versus
the original 0xff's as it normally is when there is no device responding).

Also, deactivate the resources before releasing them.  OLDCARD doesn't
seem to care but NEWCARD/CARDBUS get rather unhappy if you release
a resource that hasn't been deactivated yet.

Make pcic_p.c only compile with oldcard kernels.

23 years ago- Rename callout_reset to _callout_reset and add a flags argument.
jake [Sat, 25 Nov 2000 03:34:49 +0000 (03:34 +0000)]
- Rename callout_reset to _callout_reset and add a flags argument.
- Add macros callout_reset, which does the obvious, and
  mp_callout_reset, which passes the CALLOUT_MPSAFE flag.

23 years agoMake the xxxFILES= list generation generic. This makes it easier to add
peter [Sat, 25 Nov 2000 03:25:34 +0000 (03:25 +0000)]
Make the xxxFILES= list generation generic.  This makes it easier to add
things like MFILES= or CONFFILES= without having to modify config code.

23 years agoadd threadsafe version of inet_ntoa (inet_ntoa_r takes a buffer to fill)
alfred [Sat, 25 Nov 2000 03:14:31 +0000 (03:14 +0000)]
add threadsafe version of inet_ntoa (inet_ntoa_r takes a buffer to fill)
this is used by some debugging functions

23 years agoThese files are mpsafe.
alfred [Sat, 25 Nov 2000 03:01:05 +0000 (03:01 +0000)]
These files are mpsafe.

23 years agoRemove this binutils 2.8.1 file that was never part of any FreeBSD release.
obrien [Sat, 25 Nov 2000 02:08:34 +0000 (02:08 +0000)]
Remove this binutils 2.8.1 file that was never part of any FreeBSD release.

23 years agoRemove this binutils 2.8.1 file that was never part of any FreeBSD release.
obrien [Sat, 25 Nov 2000 02:02:01 +0000 (02:02 +0000)]
Remove this binutils 2.8.1 file that was never part of any FreeBSD release.

23 years agoIn env_destroy(), it is a bad idea to env_swap(self, 0) to switch
green [Sat, 25 Nov 2000 02:00:35 +0000 (02:00 +0000)]
In env_destroy(), it is a bad idea to env_swap(self, 0) to switch
back to the original environ unconditionally.  The setting of the
variable to save the previous environ is conditional; it happens when
ENV.e_committed is set.  Therefore, don't try to swap the env back
unless the previous env has been initialized.

PR: bin/22670
Submitted by: Takanori Saneto <sanewo@ba2.so-net.ne.jp>

23 years agoCorrect an arguement to ssh_add_identity, this matches what is currently
billf [Sat, 25 Nov 2000 01:55:42 +0000 (01:55 +0000)]
Correct an arguement to ssh_add_identity, this matches what is currently
in ports/security/openssh/files/pam_ssh.c

PR: 22164
Submitted by: Takanori Saneto <sanewo@ba2.so-net.ne.jp>
Reviewed by: green
Approved by: green

23 years agoDon't build libgcc_r if "NOLIBC_R" defined. If you don't have a threads
obrien [Sat, 25 Nov 2000 01:25:35 +0000 (01:25 +0000)]
Don't build libgcc_r if "NOLIBC_R" defined.  If you don't have a threads
safe libc, having a threads safe libgcc isn't of much use.

23 years agoPrint a warning when we detect a Realtek 8139B chip
roger [Fri, 24 Nov 2000 17:36:07 +0000 (17:36 +0000)]
Print a warning when we detect a Realtek 8139B chip
(identified by the IO map being 256 bytes long instead of 128)

This chip works very unreliably on my Lanner embedded PC with the rl driver.
Lots of watchdog timeouts or poor performance.

Forcing the media type to 10 Meg (ifconfig rl0 media 10baseT/UTP) is a good
workaround.

This looks very similar to the problem reported in PR kern/18790

It is interesting to note that the linux driver has lots of special
case code for this chip.

23 years agoAdd a module makefile for if_ep.
markm [Fri, 24 Nov 2000 17:04:51 +0000 (17:04 +0000)]
Add a module makefile for if_ep.

This is not enabled by default, as the module is missing a bunch of
useful stuff (like the ability to unload).

Not objected to by: mdodd

23 years agoEliminate groff(1) warnings.
ru [Fri, 24 Nov 2000 16:58:17 +0000 (16:58 +0000)]
Eliminate groff(1) warnings.

23 years agoThe default format for troff documentation is set with PRINTERDEVICE.
ru [Fri, 24 Nov 2000 14:08:07 +0000 (14:08 +0000)]
The default format for troff documentation is set with PRINTERDEVICE.

23 years agoMake this paper buildable in nroff mode, eliminate warnings,
ru [Fri, 24 Nov 2000 13:58:21 +0000 (13:58 +0000)]
Make this paper buildable in nroff mode, eliminate warnings,
do not force default printing device and compression mode.

23 years agomdoc(7) police: minor fixes.
ru [Fri, 24 Nov 2000 11:39:39 +0000 (11:39 +0000)]
mdoc(7) police: minor fixes.

23 years agoFix a layout problem (.It Li -> .Fx)
ben [Fri, 24 Nov 2000 11:17:28 +0000 (11:17 +0000)]
Fix a layout problem (.It Li -> .Fx)

PR: 23055
Submitted by: Jimmy Olgeni <olgeni@uli.it>

23 years ago(forced commit)
sheldonh [Fri, 24 Nov 2000 11:13:15 +0000 (11:13 +0000)]
(forced commit)

More detail describing why chmod is installed into ${INSTALLTMP} since
rev 1.176:

We use Perl's MakeMaker-generated makefiles to install Perl.  Since we
can't hack up MakeMaker's MM_Unix.pm to suit our build, we need chmod
to be around until we use our own makefiles to install perl.

PR: gnu/22025

23 years agoRemove the only hard sentence break in the file.
sheldonh [Fri, 24 Nov 2000 10:48:02 +0000 (10:48 +0000)]
Remove the only hard sentence break in the file.

23 years agoDocument EI_OSABI and EI_ABIVERSION.
asmodai [Fri, 24 Nov 2000 10:42:21 +0000 (10:42 +0000)]
Document EI_OSABI and EI_ABIVERSION.

Requested by: obrien

23 years agoMention mergemaster(8).
ben [Fri, 24 Nov 2000 10:22:08 +0000 (10:22 +0000)]
Mention mergemaster(8).

Submitted by: obrien

23 years agoLet the pwd program double as realpath(1).
phk [Fri, 24 Nov 2000 10:18:52 +0000 (10:18 +0000)]
Let the pwd program double as realpath(1).

This lets you resolve pathnames to their underlying physical path:

critter# realpath /sys/kern/subr_disk.c
/freebsd/src/sys/kern/subr_disk.c

Update the pwd man-page slightly.

23 years agoReimplement the groff(1) warnings elimination fixes in a better way.
ru [Fri, 24 Nov 2000 10:05:30 +0000 (10:05 +0000)]
Reimplement the groff(1) warnings elimination fixes in a better way.

23 years agoEliminate groff(1) warnings.
ru [Fri, 24 Nov 2000 09:33:37 +0000 (09:33 +0000)]
Eliminate groff(1) warnings.

23 years ago[rsh.1] Document the `-4' and `-6' options.
jkoshy [Fri, 24 Nov 2000 09:25:44 +0000 (09:25 +0000)]
[rsh.1] Document the `-4' and `-6' options.
[rsh.c] Make usage message match the code.

23 years ago[rlogin.1] Document the `-4' and `-6' options. Correct a typo.
jkoshy [Fri, 24 Nov 2000 09:14:09 +0000 (09:14 +0000)]
[rlogin.1] Document the `-4' and `-6' options.   Correct a typo.
[rlogin.c] Make the usage message match the code.

23 years agoFixup (hopefully) bridging + ipfw + dummynet together...
bmilekic [Thu, 23 Nov 2000 22:25:03 +0000 (22:25 +0000)]
Fixup (hopefully) bridging + ipfw + dummynet together...

* Some dummynet code incorrectly handled a malloc()-allocated pseudo-mbuf
  header structure, called "pkt," and could consequently pollute the mbuf
  free list if it was ever passed to m_freem(). The fix involved passing not
  pkt, but essentially pkt->m_next (which is a real mbuf) to the mbuf
  utility routines.

* Also, for dummynet, in bdg_forward(), made the code copy the ethernet header
  back into the mbuf (prepended) because the dummynet code that follows expects
  it to be there but it is, unfortunately for dummynet, passed to bdg_forward
  as a seperate argument.

PRs: kern/19551 ; misc/21534 ; kern/23010
Submitted by: Thomas Moestl <tmoestl@gmx.net>
Reviewed by: bmilekic
Approved by: luigi

23 years agoAdd a brief warning about devclass and multiple device driver attachments.
dcs [Thu, 23 Nov 2000 17:19:54 +0000 (17:19 +0000)]
Add a brief warning about devclass and multiple device driver attachments.

23 years agoEliminate groff(1) warnings.
ru [Thu, 23 Nov 2000 15:21:30 +0000 (15:21 +0000)]
Eliminate groff(1) warnings.

23 years agoUse a more generic name for the compiler cross-reference. (cc instead of
ben [Thu, 23 Nov 2000 14:44:45 +0000 (14:44 +0000)]
Use a more generic name for the compiler cross-reference.  (cc instead of
gcc.)

Suggested by: sheldonh (not sholdonh)

23 years ago* Say that ps, top, etc, "may not work" with the new kernel, rather than
ben [Thu, 23 Nov 2000 14:19:50 +0000 (14:19 +0000)]
* Say that ps, top, etc, "may not work" with the new kernel, rather than
  "will not work", as in many cases they will.

Suggested by: sholdonh

* Add cross-references to reboot(8) and shutdown(8)

23 years agoAdd an example to explain the basic procedure to build the world.
ben [Thu, 23 Nov 2000 14:00:26 +0000 (14:00 +0000)]
Add an example to explain the basic procedure to build the world.

Suggested by: obrien

23 years agoUpdate for the Bintuils 2.10.1 import.
obrien [Thu, 23 Nov 2000 12:28:19 +0000 (12:28 +0000)]
Update for the Bintuils 2.10.1 import.

23 years agokenv(1) first appeared in FreeBSD 4.1.1, not FreeBSD 5.0.
ben [Thu, 23 Nov 2000 11:21:35 +0000 (11:21 +0000)]
kenv(1) first appeared in FreeBSD 4.1.1, not FreeBSD 5.0.

PR: 23020
Submitted by: Simon Dick <simond@irrelevant.org>

23 years agoAdd the appropriate magic to make .Fx 4.1.1 work.
ben [Thu, 23 Nov 2000 11:17:33 +0000 (11:17 +0000)]
Add the appropriate magic to make .Fx 4.1.1 work.

23 years agoEliminate groff(1) warnings.
ru [Thu, 23 Nov 2000 11:08:17 +0000 (11:08 +0000)]
Eliminate groff(1) warnings.

23 years agoForgot to patch this file in file descriptor race fix commit
dillon [Thu, 23 Nov 2000 11:05:14 +0000 (11:05 +0000)]
Forgot to patch this file in file descriptor race fix commit

Submitted-by: "Danny J. Zerkel" <dzerkel@columbus.rr.com>
23 years agoEliminate groff(1) warnings.
ru [Thu, 23 Nov 2000 10:15:50 +0000 (10:15 +0000)]
Eliminate groff(1) warnings.

Obtained from: NetBSD

23 years agoo Change the argument of linux_sigreturn to be a pointer to a
marcel [Thu, 23 Nov 2000 08:55:30 +0000 (08:55 +0000)]
o  Change the argument of linux_sigreturn to be a pointer to a
   struct sigframe. We need more than only the signal context.

o  Properly convert the signal mask when setting up the signal
   frame in linux_sendsig and properly convert it back in
   linux_sigreturn.

Do some cleanups and improve style while here.

23 years agoChange the argument of linux_sigreturn to be a pointer to a
marcel [Thu, 23 Nov 2000 08:53:19 +0000 (08:53 +0000)]
Change the argument of linux_sigreturn to be a pointer to a
struct sigframe.

23 years agoStarting from groff(1) version 1.12, -msafer is now the default,
ru [Thu, 23 Nov 2000 08:51:33 +0000 (08:51 +0000)]
Starting from groff(1) version 1.12, -msafer is now the default,
but index building for 13.viref requires the use of .sy request.
Repair the index building by running groff(1) in unsafe -U mode.

Requested by: bde

23 years agomdoc(7) police: misc minor fixes.
ru [Thu, 23 Nov 2000 08:18:10 +0000 (08:18 +0000)]
mdoc(7) police: misc minor fixes.

23 years agoRemove extra ")".
kuriyama [Thu, 23 Nov 2000 08:09:45 +0000 (08:09 +0000)]
Remove extra ")".

23 years agoAdd a forgotten mutex_exit()/KUE_UNLOCK() to kue_init().
wpaul [Thu, 23 Nov 2000 05:58:48 +0000 (05:58 +0000)]
Add a forgotten mutex_exit()/KUE_UNLOCK() to kue_init().

23 years agoDon't unregister the ioctl handlers before we verified we
marcel [Thu, 23 Nov 2000 03:21:58 +0000 (03:21 +0000)]
Don't unregister the ioctl handlers before we verified we
can unload. Doing so leaves the linuxulator in a crippled
state (no ioctl support) when Linux binaries are run at
unload time.

While here, consistently spell ELF in capitals and perform
some minor style improvements.

ELF spelling submitted by: asmodai

23 years agoCorrect the pathname of the history file.
grog [Thu, 23 Nov 2000 01:41:11 +0000 (01:41 +0000)]
Correct the pathname of the history file.

Reported by: Crist J . Clark <cjclark@alum.mit.edu>

23 years agoNew release notes: Thread supports under Linux emulation on alpha,
bmah [Thu, 23 Nov 2000 01:22:59 +0000 (01:22 +0000)]
New release notes:  Thread supports under Linux emulation on alpha,
an(4)/ancontrol(8) WEP, ng_one2many(4), softupdates bugfixes/
enhancements, OpenSSH agent/X forwarding bug fixed, ssh(1) no longer
SUID root, OpenSSL->0.9.6, binutils->2.10.1, lastlogin(1),
newfs(1) write combining (+MFC), config(8) buffer overflows fixed,
pcm(4) drivers compiled into GENERIC by default.

Other MFCs:  Write combining for crash dumps.

Delete a duplicated note on mergemaster(8).

23 years agoFix the KTR tracepoints for mtx_enter/exit/try_enter to properly order the
jhb [Thu, 23 Nov 2000 00:38:45 +0000 (00:38 +0000)]
Fix the KTR tracepoints for mtx_enter/exit/try_enter to properly order the
parameters for the KTR_EXTEND case.

23 years agoUpdate the probe some more to deal with 16/32 bit issues. If the chip
wpaul [Thu, 23 Nov 2000 00:28:43 +0000 (00:28 +0000)]
Update the probe some more to deal with 16/32 bit issues. If the chip
is already in 32-bit mode, we need to be able to detect this and still
read the chip ID code. Detecting 32-bit mode is actually a little
tricky, since we want to avoid turning it on accidentally. The easiest
way to do it is to just try and read the PCI subsystem ID from the
bus control registers using 16-bit accesses and compare that with the
value read from PCI config space. If they match, then we know we're in
16-bit mode, otherwise we assume 32-bit mode.

23 years agoFinish the job of conditionalizing the PC98 stuff.
jkh [Wed, 22 Nov 2000 22:28:34 +0000 (22:28 +0000)]
Finish the job of conditionalizing the PC98 stuff.

23 years agoRemove "NODESCRYPTLINKS" it has been superseeded by "passwd_format"
obrien [Wed, 22 Nov 2000 20:37:40 +0000 (20:37 +0000)]
Remove "NODESCRYPTLINKS" it has been superseeded by "passwd_format"
in /etc/login.conf.

23 years agoAdd one2many subdirectory (previously forgotten).
archie [Wed, 22 Nov 2000 19:04:42 +0000 (19:04 +0000)]
Add one2many subdirectory (previously forgotten).

23 years agoo fix a typo in copyright part: mdoc comment starts with .\", not ,\"
phantom [Wed, 22 Nov 2000 18:00:50 +0000 (18:00 +0000)]
o fix a typo in copyright part: mdoc comment starts with .\", not ,\"
o few mdoc(7) fixes

PR: docs/13218

23 years agoremove bogus Xref to lsdev(8)
phantom [Wed, 22 Nov 2000 17:57:44 +0000 (17:57 +0000)]
remove bogus Xref to lsdev(8)

PR: docs/13218

23 years agoo get rid lfs mentions
phantom [Wed, 22 Nov 2000 17:56:21 +0000 (17:56 +0000)]
o get rid lfs mentions
o remove non-mdoc groff's instructions

23 years agoWe do not support lfs. Remove it from list of remountable fs'es.
phantom [Wed, 22 Nov 2000 17:54:56 +0000 (17:54 +0000)]
We do not support lfs. Remove it from list of remountable fs'es.

23 years agoUse correct macro for path name
phantom [Wed, 22 Nov 2000 17:53:17 +0000 (17:53 +0000)]
Use correct macro for path name

PR: docs/13218

23 years agomdoc(7) police: Er macro usage cleanup.
ru [Wed, 22 Nov 2000 16:11:48 +0000 (16:11 +0000)]
mdoc(7) police: Er macro usage cleanup.

23 years agomdoc(7) police: Er macro usage cleanup.
ru [Wed, 22 Nov 2000 16:02:00 +0000 (16:02 +0000)]
mdoc(7) police: Er macro usage cleanup.

23 years agomdoc(7) police: Er macro usage cleanup.
ru [Wed, 22 Nov 2000 15:55:01 +0000 (15:55 +0000)]
mdoc(7) police: Er macro usage cleanup.

23 years agoDon't go haywire if the server closes the connection in the middle of a
des [Wed, 22 Nov 2000 14:50:46 +0000 (14:50 +0000)]
Don't go haywire if the server closes the connection in the middle of a
multiline response (proper fix this time).

23 years agoRevert previous commit, it was somewhat hasty.
des [Wed, 22 Nov 2000 14:44:48 +0000 (14:44 +0000)]
Revert previous commit, it was somewhat hasty.

23 years agoReduce number of #ifdef nestings.
asmodai [Wed, 22 Nov 2000 14:38:30 +0000 (14:38 +0000)]
Reduce number of #ifdef nestings.

Submitted by: bde

23 years agoDon't go haywire if the server closes the connection during a multiline
des [Wed, 22 Nov 2000 14:30:28 +0000 (14:30 +0000)]
Don't go haywire if the server closes the connection during a multiline
response.

23 years agoAdd a note asking committers to update make.conf.5 when they update this.
ben [Wed, 22 Nov 2000 14:11:21 +0000 (14:11 +0000)]
Add a note asking committers to update make.conf.5 when they update this.

23 years agoAdd two new manual pages to document the various options available in
ben [Wed, 22 Nov 2000 14:04:26 +0000 (14:04 +0000)]
Add two new manual pages to document the various options available in
make.conf, and the /usr/src building process.

PR: 22676
Submitted by: Mike Meyer <mwm@mired.org>
Reviewed by: nik, sheldonh

23 years agomdoc(7) police: fixed typo.
ru [Wed, 22 Nov 2000 13:49:11 +0000 (13:49 +0000)]
mdoc(7) police: fixed typo.

23 years agomdoc(7) police: add the missing and required .Dd macro call.
ru [Wed, 22 Nov 2000 13:31:01 +0000 (13:31 +0000)]
mdoc(7) police: add the missing and required .Dd macro call.

23 years agoCreate temporary files in a secure directory, instead of using multiple
kris [Wed, 22 Nov 2000 11:09:30 +0000 (11:09 +0000)]
Create temporary files in a secure directory, instead of using multiple
filenames based on a single invocation of mktemp() in /tmp, which is
easily predictable after the first one.

Audited by:     markm

23 years agoUse secure temporary filenames during build.
kris [Wed, 22 Nov 2000 11:05:51 +0000 (11:05 +0000)]
Use secure temporary filenames during build.

Audited by: markm, cracauer

23 years ago(null commit)
ru [Wed, 22 Nov 2000 09:50:40 +0000 (09:50 +0000)]
(null commit)

Previous commit has wrong log message.  The correct one is:

mdoc(7) police: do not split author names in the AUTHORS section.

23 years agomdoc(7) police: do not split author names in the AUTHORS section.
ru [Wed, 22 Nov 2000 09:35:58 +0000 (09:35 +0000)]
mdoc(7) police: do not split author names in the AUTHORS section.

23 years agolog
ru [Wed, 22 Nov 2000 09:23:54 +0000 (09:23 +0000)]
log

23 years agomdoc(7) police: use the new feature of the An macro.
ru [Wed, 22 Nov 2000 08:47:35 +0000 (08:47 +0000)]
mdoc(7) police: use the new feature of the An macro.

23 years agoMake An macro understand two special arguments, -nosplit
ru [Wed, 22 Nov 2000 08:39:17 +0000 (08:39 +0000)]
Make An macro understand two special arguments, -nosplit
and -split.  See the mdoc.samples(7) manpage for details.

Reviewed by: sheldonh

23 years agomdoc(7) police: minor cleanup.
ru [Wed, 22 Nov 2000 08:19:15 +0000 (08:19 +0000)]
mdoc(7) police: minor cleanup.

23 years agoProtect the following with a lockmgr lock:
jake [Wed, 22 Nov 2000 07:42:04 +0000 (07:42 +0000)]
Protect the following with a lockmgr lock:

allproc
zombproc
pidhashtbl
proc.p_list
proc.p_hash
nextpid

Reviewed by: jhb
Obtained from: BSD/OS and netbsd