summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Install the stock (as supplied by groff(1) distribution) tmac.anru2000-12-065-15/+12
| | | | | and tmac.andoc files. The man(1), catman(1) and bsd.man.mk have been modified to call groff(1) with -mandoc argument.
* Backout rev 1.2 (emulate `:o' and `/o' letters using 'o'),ru2000-12-061-2/+0
| | | | since they are already emulated in tmac.tty-char.
* Build and install groff(1) texinfo(1) documentation.ru2000-12-062-2/+8
|
* Groff 1.16.1 implements .psbb request internally in troff(1)ru2000-12-063-3/+3
| | | | | rather than as a macro using the .sy request, so we may drop the unsafe (-U) mode.
* Upgrade to groff 1.16.1.ru2000-12-061-8/+1
|
* Hmm, font `L' is still used in old Sun docs.ru2000-12-062-2/+2
|
* The PAM support for our OpenSSH is sponsored by Enitel ASA.green2000-12-060-0/+0
| | | | PAM support by: Eivind Eklund <eivind@FreeBSD.org>
* These groff(1) documents require sed(1) parsing.ru2000-12-062-4/+28
|
* Reduce the diffs with the stock (FSF) version.ru2000-12-061-2/+2
|
* Somewhere along the line, I misunderstood the whole FTP_PASSIVE_MODE debatedes2000-12-062-4/+4
| | | | | | | 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".
* Backout rev 1.2 (workaround for gcc 2.60 expression evaluationru2000-12-061-5/+1
| | | | bug) as later versions of gcc have apparently this bug fixed.
* Font `L' is not needed for BSD docs, but some use font `CW'.ru2000-12-062-2/+2
|
* Use stock (FSF) version of this file.ru2000-12-062-2/+4
|
* Fix bogon in previous commit, whereby the contents of SUBDIR were lostsheldonh2000-12-061-2/+2
| | | | | | | | 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>
* Fixed device files building procedure. This makesru2000-12-069-55/+10
| | | | it possible to ``make all install'' in one pass.
* Untangle vfsinit() a bit. Use seperate sysinit functions rather thanpeter2000-12-066-32/+29
| | | | having a super-function calling bits all over the place.
* Simplify this a bit so that it doesn't have to generate silly redundantpeter2000-12-062-28/+6
| | | | | | __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.
* Back this out, we apparently have the ipfw(4).ru2000-12-061-1/+1
|
* ipfw(4) -> ipfw(8).ru2000-12-061-1/+1
|
* Add back displaying the `world' start time when displaying the stop time.obrien2000-12-061-2/+3
| | | | | However, don't prefix it with '>>>', so those greping for times will not see it.
* This is kind of a nasty hack, but it appears to solve the Compaq DL360peter2000-12-067-14/+91
| | | | | | | | 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.
* Pass RFSTOPPED to fork1() in kthread_create() to avoid a race conditionjhb2000-12-061-1/+9
| | | | | | | | | | 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
* Cleanup XXXdir functions to eliminate global hash table ofdeischen2000-12-065-53/+34
| | | | | | | | | | | | | | | | 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
* Add a LIST_HEAD to DIR for a queue of telldir positions.deischen2000-12-061-1/+6
| | | | | Also add a location count (used as the magic for telldir) to DIR. A future change will also add a mutex/lock.
* - Add in PROC_LOCK() and PROC_UNLOCK() macros. For now these do simplejhb2000-12-061-2/+14
| | | | | | 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().
* Add appropriate defines to use snprintf/vsnprintf instead ofjedgar2000-12-061-0/+2
| | | | | | sprintf/vsprintf. Approved by: peter
* Protect accesses to member of struct proc with the proc lock.jhb2000-12-066-4/+24
|
* Move io_apic_{read,write} from apic_ipl.s (where they do not belong) intopeter2000-12-065-41/+32
| | | | | | 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.
* Restore a sense of cleanly supporting multiple platforms. That is,mjacob2000-12-062-36/+95
| | | | | | | | 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.
* Move $FreeBSD id up to top of file for multi-OS ease of support reasons.mjacob2000-12-061-1/+1
|
* Enable the same path deduction as for ftp install (great for snapshot tests)jkh2000-12-064-38/+120
| | | | | | | Allow user to change proxy server Allow user to change ftp path Submitted by: pho
* GC unused assembler function apic_eoi()peter2000-12-064-10/+0
|
* Add in #include of <sys/lock.h> since it was axed from <sys/proc.h>.jhb2000-12-061-0/+1
| | | | | Noticed by: Wesley Morgan <morganw@chemikals.org> Pointy hat to: me
* Add forgotten SYSCALL_MODULE_HELPER() for msgsys() syscall.alfred2000-12-051-0/+1
| | | | Discovered by: Valentin Chopov <valentin@valcho.net>
* need to adjust allocation size to properly deal with non PAGE_SIZEalfred2000-12-051-1/+1
| | | | | allocations, specifically with allocations < PAGE_SIZE when the code doesn't work properly
* Change the spelling of `.' to `.' from .OBJDIR since `.' really is whereobrien2000-12-059-9/+9
| | | | generated files land. Also give precedence to generated files.
* Move the ipfw(4) xref to the description of LOG_SECURITY instead ofjhb2000-12-051-1/+1
| | | | | | | LOG_UUCP. PR: docs/23302 Submitted by: cshumway
* 1. Several style cleanups:jhb2000-12-051-159/+102
| | | | | | | | | | | | | - 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)
* Note that Symbios is the new owner of the NCR SCSI chip designs. Andwilko2000-12-051-15/+18
| | | | | | | that the document references to Symbios are ment to include NCR-stamped chips as well. Suggested by: obrien
* groff does not use MANDEPEND anymore.ru2000-12-051-1/+1
|
* Added directories needed for Groff 1.16.1 distribution.ru2000-12-051-0/+6
|
* Upgrade to version 1.16.1.ru2000-12-0543-226/+256
|
* Resolve conflicts after v1.16.1 import.ru2000-12-0521-397/+818
|
* Removed yacc(1) output files.ru2000-12-052-197/+0
|
* Removed files not present in v1.16.1 import.ru2000-12-0528-490/+0
|
* This commit was generated by cvs2svn to compensate for changes in r69626,ru2000-12-05443-15691/+68668
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Virgin import of FSF groff v1.16.1ru2000-12-05467-18666/+71850
| |
* | Alphabetically reorder options in `.Op Fl' macro to be consistent with thesobomax2000-12-051-1/+1
| | | | | | | | rest of the code.
* | Add new ssh pam support and pam.conf requirements.imp2000-12-051-0/+9
| |
* | Move the wakeup/signaling of the reader side of the tun device intojlemon2000-12-051-9/+18
| | | | | | | | | | | | a tunstart function, which is called when a packet is sucessfully placed on the queue. This allows us to properly do output byte accounting within the handoff routine.
OpenPOWER on IntegriCloud