Ruslan Ermilov
78621becb9
Do not duplicate our efforts checking FreeBSD version. For a new version,
...
simply define the empty string before the .Fx macro definition, like this:
.ds Fx*4.3
2000-12-06 18:31:21 +00:00
Ruslan Ermilov
4c5804ea54
Install the stock (as supplied by groff(1) distribution) tmac.an
...
and tmac.andoc files. The man(1), catman(1) and bsd.man.mk have
been modified to call groff(1) with -mandoc argument.
2000-12-06 17:02:33 +00:00
Ruslan Ermilov
081b301be3
Backout rev 1.2 (emulate :o' and
/o' letters using 'o'),
...
since they are already emulated in tmac.tty-char.
2000-12-06 12:45:10 +00:00
Ruslan Ermilov
d6d2925b93
Build and install groff(1) texinfo(1) documentation.
2000-12-06 12:17:01 +00:00
Ruslan Ermilov
f6d2f1c200
Groff 1.16.1 implements .psbb request internally in troff(1)
...
rather than as a macro using the .sy request, so we may drop
the unsafe (-U) mode.
2000-12-06 11:56:34 +00:00
Ruslan Ermilov
f2b6be9022
Upgrade to groff 1.16.1.
2000-12-06 11:38:34 +00:00
Ruslan Ermilov
8124b9de5d
Hmm, font `L' is still used in old Sun docs.
2000-12-06 11:25:33 +00:00
Brian Feldman
413e928753
The PAM support for our OpenSSH is sponsored by Enitel ASA.
...
PAM support by: Eivind Eklund <eivind@FreeBSD.org>
2000-12-06 10:57:57 +00:00
Ruslan Ermilov
ad051d3564
These groff(1) documents require sed(1) parsing.
2000-12-06 10:32:40 +00:00
Ruslan Ermilov
c0f2657bc2
Reduce the diffs with the stock (FSF) version.
2000-12-06 09:32:10 +00:00
Dag-Erling Smørgrav
6c81eb523e
Somewhere along the line, I misunderstood the whole FTP_PASSIVE_MODE debate
...
and had libfetch selecting passive mode even when FTP_PASSIVE_MODE was not
set at all, which is really quite surprising unless you know about it. So
change it to the agreed default behaviour of selecting passive mode if
FTP_PASSIVE_MODE is set, but not "no".
2000-12-06 09:23:27 +00:00
Ruslan Ermilov
0138a93062
Backout rev 1.2 (workaround for gcc 2.60 expression evaluation
...
bug) as later versions of gcc have apparently this bug fixed.
2000-12-06 09:21:36 +00:00
Ruslan Ermilov
5914bd4e55
Font L' is not needed for BSD docs, but some use font
CW'.
2000-12-06 09:01:07 +00:00
Ruslan Ermilov
a022bb6ce3
Use stock (FSF) version of this file.
2000-12-06 08:49:05 +00:00
Sheldon Hearn
27b7ba4bb1
Fix bogon in previous commit, whereby the contents of SUBDIR were lost
...
in the assignment of man4.alpha!
This prevented the man4.i386 pages from being installed.
Reported by: Masayuki FUKUI <fukui@sonic.nm.fujitsu.co.jp>
2000-12-06 08:45:03 +00:00
Ruslan Ermilov
0727d1b5ba
Fixed device files building procedure. This makes
...
it possible to ``make all install'' in one pass.
2000-12-06 08:35:46 +00:00
Peter Wemm
138e514cb5
Untangle vfsinit() a bit. Use seperate sysinit functions rather than
...
having a super-function calling bits all over the place.
2000-12-06 07:09:08 +00:00
Peter Wemm
7ca7bbb36b
Simplify this a bit so that it doesn't have to generate silly redundant
...
__P() prototypes when an ansi-style static inline is a prototype already.
Since vnode_if.[ch] are generated on the fly, there are no CVS diffs to
mess up.
2000-12-06 06:59:38 +00:00
Ruslan Ermilov
bcec0cefc4
Back this out, we apparently have the ipfw(4).
2000-12-06 06:50:24 +00:00
Ruslan Ermilov
4daefb4d8e
ipfw(4) -> ipfw(8).
2000-12-06 06:48:28 +00:00
David E. O'Brien
59084d0c82
Add back displaying the `world' start time when displaying the stop time.
...
However, don't prefix it with '>>>', so those greping for times will
not see it.
2000-12-06 04:35:45 +00:00
Peter Wemm
4366ac52ad
This is kind of a nasty hack, but it appears to solve the Compaq DL360
...
SMP problem. Compaq, in their infinite wisdom, forgot to put the IO apic
intpin #0 connection to the 8259 PIC into the mptable. This hack is to
look and see if intpin #0 has *no* table entry and adds a fake ExtInt
entry for the remap routines to use. isa/clock.c will still test the
interrupts. This entry is only ever used on an already broken system.
2000-12-06 03:47:14 +00:00
John Baldwin
960d3c68ed
Pass RFSTOPPED to fork1() in kthread_create() to avoid a race condition
...
where fork1() could put the process on the run queue where it could be
snatched up by another CPU before kthread_create() had set the proper
fork handler. Instead, we put the new kthread on the runqueue after its
fork handler has been sent.
Noticed by: jake
Looked over by: peter
2000-12-06 03:45:15 +00:00
Daniel Eischen
ef80a53495
Cleanup XXXdir functions to eliminate global hash table of
...
telldir positions. This will allow (future) locking on a
per-DIR basis (for MT-safety). For now, this change does
the following:
o Remove the hash table from telldir.c. Recode to use queue
macros.
o Remove 'const' from 'telldir(const DIR *)'.
o Remove 'register' variables as suggested in a recent
thread.
No response from: -current
2000-12-06 03:15:49 +00:00
Daniel Eischen
9b8551d0a5
Add a LIST_HEAD to DIR for a queue of telldir positions.
...
Also add a location count (used as the magic for telldir)
to DIR. A future change will also add a mutex/lock.
2000-12-06 03:14:28 +00:00
John Baldwin
495c2d2085
- Add in PROC_LOCK() and PROC_UNLOCK() macros. For now these do simple
...
mutex operations. In the future they may call functions that verify
correct locking order between processes in the INVARIANTS case.
- Lock the process in PHOLD() and PREL().
2000-12-06 02:01:56 +00:00
Chris D. Faulhaber
f3b0f821b0
Add appropriate defines to use snprintf/vsnprintf instead of
...
sprintf/vsprintf.
Approved by: peter
2000-12-06 01:49:08 +00:00
John Baldwin
f3a16450d0
Protect accesses to member of struct proc with the proc lock.
2000-12-06 01:45:20 +00:00
Peter Wemm
a263238c86
Move io_apic_{read,write} from apic_ipl.s (where they do not belong) into
...
mpapic.c. This gives us the benefit of C type checking. These functions
are not called in any critical paths and are not used by the interrupt
routines.
2000-12-06 01:04:02 +00:00
Matt Jacob
61e1a8f478
Restore a sense of cleanly supporting multiple platforms. That is,
...
place the LOCKing macros within the areas within if_wxvar.h that
is set aside for them. Put any platform specific data also in those
areas.
For ease of maintenance purposes, merge in the OpenBSD version codebase here.
2000-12-06 00:52:28 +00:00
Matt Jacob
5c43d35fd7
Move $FreeBSD id up to top of file for multi-OS ease of support reasons.
2000-12-06 00:50:53 +00:00
Jordan K. Hubbard
3796819e5c
Enable the same path deduction as for ftp install (great for snapshot tests)
...
Allow user to change proxy server
Allow user to change ftp path
Submitted by: pho
2000-12-06 00:47:54 +00:00
Peter Wemm
9a18987b73
GC unused assembler function apic_eoi()
2000-12-06 00:38:04 +00:00
John Baldwin
7b29322c25
Add in #include of <sys/lock.h> since it was axed from <sys/proc.h>.
...
Noticed by: Wesley Morgan <morganw@chemikals.org>
Pointy hat to: me
2000-12-06 00:33:58 +00:00
Alfred Perlstein
89b54bffe9
Add forgotten SYSCALL_MODULE_HELPER() for msgsys() syscall.
...
Discovered by: Valentin Chopov <valentin@valcho.net>
2000-12-05 23:05:45 +00:00
Alfred Perlstein
54019b0afe
need to adjust allocation size to properly deal with non PAGE_SIZE
...
allocations, specifically with allocations < PAGE_SIZE when the code
doesn't work properly
2000-12-05 22:22:24 +00:00
David E. O'Brien
a8e642f574
Change the spelling of .' to
.' from .OBJDIR since `.' really is where
...
generated files land. Also give precedence to generated files.
2000-12-05 22:10:43 +00:00
John Baldwin
04cb9bbb1e
Move the ipfw(4) xref to the description of LOG_SECURITY instead of
...
LOG_UUCP.
PR: docs/23302
Submitted by: cshumway
2000-12-05 20:30:28 +00:00
John Baldwin
b77e9a8b88
1. Several style cleanups:
...
- Whitespace fixes.
- Comment fixes (mostly capitalization and trailing periods).
- Reorderings to put variables all in the same place, function prototypes
sorted alphabetically, etc.
2. Removed unused and #ifdef'd out members from struct ithd.
3. Changed ESTCPULIM() to use an explicit (PRIO_MAX - PRIO_MIN) rather than
PRIO_TOTAL.
4. Remove <sys/lock.h> #include and resort #include's.
Submitted by: bde (1, 3, 4)
2000-12-05 20:23:43 +00:00
Wilko Bulte
bf1c92bfa2
Note that Symbios is the new owner of the NCR SCSI chip designs. And
...
that the document references to Symbios are ment to include NCR-stamped
chips as well.
Suggested by: obrien
2000-12-05 20:21:18 +00:00
Ruslan Ermilov
fe409e49d0
groff does not use MANDEPEND anymore.
2000-12-05 19:56:50 +00:00
Ruslan Ermilov
ef90734a7f
Added directories needed for Groff 1.16.1 distribution.
2000-12-05 19:18:45 +00:00
Ruslan Ermilov
ebc20f71ea
Upgrade to version 1.16.1.
2000-12-05 19:15:36 +00:00
Ruslan Ermilov
6d856126f9
Resolve conflicts after v1.16.1 import.
2000-12-05 19:06:41 +00:00
Ruslan Ermilov
efa37f53c6
Removed yacc(1) output files.
2000-12-05 18:53:29 +00:00
Ruslan Ermilov
f10b398a26
Removed files not present in v1.16.1 import.
2000-12-05 18:52:33 +00:00
Ruslan Ermilov
a8c609dad1
This commit was generated by cvs2svn to compensate for changes in r69626,
...
which included commits to RCS files with non-trunk default branches.
2000-12-05 18:49:44 +00:00
Ruslan Ermilov
c8d1b47c7f
Virgin import of FSF groff v1.16.1
2000-12-05 18:49:44 +00:00
Maxim Sobolev
67739cc833
Alphabetically reorder options in `.Op Fl' macro to be consistent with the
...
rest of the code.
2000-12-05 16:40:14 +00:00
Warner Losh
960773f7ec
Add new ssh pam support and pam.conf requirements.
2000-12-05 16:38:14 +00:00