summaryrefslogtreecommitdiffstats
path: root/share
Commit message (Collapse)AuthorAgeFilesLines
* Mdoc(7)ify the previous revision.ru2001-01-241-1/+4
|
* mdoc(7) police: fixed some minor formatting/spelling errors.ru2001-01-243-20/+20
|
* Hmm. This must be a first. The man page was updated *before* the source.mjacob2001-01-231-0/+4
| | | | Correct some slight inaccuracies in the man page.
* - Activate runqueue.9, scheduler.9, and sleepqueue.9 along with appropriatejhb2001-01-231-3/+12
| | | | | MLINKS. - Update MLINKS for mi_switch.9.
* Catch up to the new way that the scheduling code works since the originaljhb2001-01-231-40/+27
| | | | | | | SMPng commit. Also document the new cpu_throw function (currently only on i386). Reviewed by: sheldonh
* Document the various functions and variables used by the currentjhb2001-01-231-0/+276
| | | | | | | scheduler code. Includes a rough description of the various priority values stored in struct proc as well as priority propagation. Reviewed by: chris
* Document the current organization and helper functions used to implementjhb2001-01-231-0/+89
| | | | | | the sleep queues used by msleep/wakeup and friends. Submitted by: sheldonh
* Document the current organization of the run queues and the variousjhb2001-01-231-0/+137
| | | | | | functions used to manage them. Reviewed by: sheldonh
* mdoc(7) police: use macros wherever possible, remove hard sentence breaks.ru2001-01-221-105/+113
|
* Prepare for mdoc(7)NG.ru2001-01-221-2/+2
|
* Add the options of which cron program to run, and specifying flagsdougb2001-01-211-0/+12
| | | | | | | to it. PR: conf/24358 Submitted by: Gerhard Sittig <Gerhard.Sittig@gmx.net>
* Remove MUTEX_DECLARE() and MTX_COLD. Instead, postpone full mutexjasone2001-01-212-40/+1
| | | | | | | | initialization until after malloc() is safe to call, then iterate through all mutexes and complete their initialization. This change is necessary in order to avoid some circular bootstrapping dependencies.
* mdoc(7) police: removed leading whitespaces that are not insideru2001-01-195-5/+7
| | | | Bd/Ed; these hardly degrade the quality of the produced output.
* BSD/OS was called BSD/386 prior to 2.0.itojun2001-01-191-13/+13
|
* mdoc(7) police: add missing .Ed call.ru2001-01-182-1/+2
|
* remove reference to nonexistent screenmap(5) manual page.ben2001-01-181-1/+0
| | | | | PR: 24305 Submitted by: Marco van de Voort <marcov@stack.nl>
* mdoc(7) police:ru2001-01-181-279/+508
| | | | | Use proper macros for variables and their types, removed hard sentence breaks, added a bunch of cross references.
* Add a smal line of text which indicates I am working on updatingasmodai2001-01-181-0/+8
| | | | this. <almost exactly 6 years after Garrett>
* Add Greek collateache2001-01-175-0/+420
| | | | | PR: 24324 Submitted by: past@netmode.ntua.gr
* Add Greek keyboardache2001-01-173-0/+563
| | | | | PR: 24324 Submitted by: past@netmode.ntua.gr
* Add iso07 fontsache2001-01-174-0/+231
| | | | | PR: 24324 Submitted by: past@netmode.ntua.gr
* Add Greek supportache2001-01-173-0/+203
| | | | | PR: 24324 Submitted by: past@netmode.ntua.gr
* Add Greek supportache2001-01-173-1/+104
| | | | | PR: 24324 Submitted by: past@netmode.ntua.gr
* document ${KERNEL}ben2001-01-171-0/+18
| | | | | PR: 24404 Submitted by: Mike Meyer <mwm@mired.org>
* Actually add build.7 to the Makefile, 2 months late.ben2001-01-171-1/+1
| | | | | PR: 24405 Submitted by: Mike Meyer <mwm@mired.org>
* sysinstall.8 lives in src/usr.sbin/sysinstall now and gets installed viajhb2001-01-171-6/+0
| | | | normal means, so remove the hack to install it.
* Prepare for mdoc(7)NG.ru2001-01-1613-22/+22
|
* Prepare for mdoc(7)NG.ru2001-01-162-3/+3
|
* mdoc(7) police: use .Fa for function arguments, use .Vt for variable type.ru2001-01-161-11/+11
|
* Implement condition variables.jasone2001-01-162-1/+208
|
* man(7) -> mdoc(7).ru2001-01-151-26/+52
|
* Simplify some mdoc(7) constructs.ru2001-01-151-12/+5
|
* Add a missing argument for SYSCTL_ADD_OPAQUE.markm2001-01-141-4/+5
| | | | Fix the examples at the end which were horribly broken.
* Correct a typo in a product name.dmlb2001-01-131-1/+1
| | | | Pointed Out By: ru
* The prototype for cpu_switch() was changed in revision 1.111 ofchris2001-01-131-1/+1
| | | | | | | <sys/proc.h> PR: 24311 Submitted by: Robert Drehmel <robert@gizmo.quizbot.org>
* o Clear up explanations of various entries (includes spelling, grammar,chris2001-01-131-53/+87
| | | | | | | | punctuation, and explanations that are just plain wrong) o Add missing entries o Remove entries for directories that do not exist Submitted by: Rich Morin <rdm@cfcl.com> (for the most part)
* fix typo; file -> filesben2001-01-131-1/+1
| | | | Submitted by: Alexey Dokuchaev <danfe@inet.ssc.nsu.ru>
* Only install sysinstall.8 if the release/sysinstall directory exists. Thisben2001-01-131-2/+5
| | | | | | | fixes the world for people without src-release. PR: 24122 Submitted by: Steven G. Kargl <kargl@apl.washington.edu>
* Oops, the previous did not work with current mdoc(7).ru2001-01-121-1/+1
|
* mdoc(7) police: Ft/Vt now accept punctuation-type arguments.ru2001-01-125-13/+14
|
* Add manual for ray driver.dmlb2001-01-112-1/+408
| | | | Reviewed by: ru
* Add these key bindings for tcsh users in interactive mode:archie2001-01-101-0/+5
| | | | | | | | bindkey "^W" backward-delete-word bindkey -k up history-search-backward bindkey -k down history-search-forward Reviewed by: -current
* Fixed mdoc(7)NG warnings introduced in the previous revision.ru2001-01-091-4/+2
|
* Part 2 of the netgraph rewrite.julian2001-01-081-28/+124
| | | | | | This is mostly cosmetic changes, (though I caught a bug or two while makeing them) Reviewed by: archie@freebsd.org
* Rewrite of netgraph to start getting ready for SMP.julian2001-01-061-141/+153
| | | | | | | | This version is functional and is aproaching solid.. notice I said APROACHING. There are many node types I cannot test I have tested: echo hole ppp socket vjc iface tee bpf async tty The rest compile and "Look" right. More changes to follow. DEBUGGING is enabled in this code to help if people have problems.
* Add getenv(3) and setenv(3) into ``See also'' section.sobomax2001-01-011-0/+2
|
* Install sysinstall.8 as part of buildworld.ben2001-01-011-1/+4
| | | | | PR: 19818 Submitted by: Brian Candler <B.Candler@pobox.com>
* Remove comma after final .Nm entry before .Ndben2000-12-301-1/+1
|
* Remove CIRCLEQ manual page links now that CIRCLEQ has been axed.ben2000-12-301-16/+0
|
* Get rid of deprecated ru_SU.* locales. ru_RU.* will be used instead.phantom2000-12-2914-697/+16
|
OpenPOWER on IntegriCloud