jtc
ab9f1480e9
Change "reg" to "register"
...
Remove private implementation of erasechar() and killchar().
1997-05-23 23:09:36 +00:00
jonathan
ba1c517a52
GNU ld script for linking mips kernels, contributed by Arne Juul.
1997-05-23 22:21:06 +00:00
cjs
93b985ed90
Allow setting the directory to which anonymous users chdir from
...
the command line. Document -u option. A couple of minor cleanups.
1997-05-23 22:09:48 +00:00
augustss
72b5ba3901
Redo the way selecting the mode for SB cards is done completely.
...
It is now table driven since there are so many different variations
of SB cards out there.
Also fix a bug that stopped SB2 and SBPro from working.
1997-05-23 21:19:59 +00:00
thorpej
38b3bce886
Make sure reference count manipulation is "atomic", from
...
Matthias Drochner <drochner@zelux6.zel.kfa-juelich.de>.
1997-05-23 19:46:08 +00:00
cjs
cddf57d923
Add documentation for ulimit command, courtsey of
...
Eric Fischer <eric@fudge.uchicago.edu>.
1997-05-23 19:40:30 +00:00
lukem
c04e79d154
url_get(): use origline in some messages, simplifying them, and free up copy
...
of origline before returning. also, previous commit (fix for [bin/3643]) was
inspired by suggested fix in said PR by Alan Barrett <apb@iafrica.com>.
1997-05-23 18:54:18 +00:00
lukem
7cb8cd9611
Actually report why certain URLs are invalid, rather than just exit
...
with a non-zero exit code. fixes most of [bin/3643].
1997-05-23 18:42:36 +00:00
augustss
f02b371b53
Improve printing of values when changing a variable.
1997-05-23 17:55:29 +00:00
kleink
7f69979797
Create /dev/ttyaN device nodes for Frodo-based APCIs.
1997-05-23 11:20:27 +00:00
augustss
c612a6fca7
Check that setting IRQ and DRQ on SB16 actually succeeds.
1997-05-23 09:45:40 +00:00
thorpej
3c8f9e9de8
Fix a comment.
1997-05-23 03:09:56 +00:00
veego
8c07b39516
Use genassym.sh to facilitate cross-compiling.
1997-05-22 22:50:38 +00:00
veego
2c7dbe6639
Add <machine/trap.h> so we don't need to define all the trap values in
...
assym.h.
1997-05-22 22:48:47 +00:00
veego
ddf49ca947
Use genassym.sh to facilitate cross-compiling and add -Wmissing-prototypes.
1997-05-22 22:45:37 +00:00
cjs
4112a161ec
Back out last commit; bug was fixed in 1.37, but differently.
1997-05-22 21:41:09 +00:00
cjs
ab82fdc6b5
The interface setup loop was adding every interface in `ifconfig -l`
...
to $configured_interfaces because it never checked to see if if it
actually configured that interface. For this reason it was setting
$configured_lo0 as well, so that never got configured, causing all
sorts of problems.
1997-05-22 21:29:49 +00:00
kleink
1a4cea1055
As per PSD:19, section 8, move to (0,0) when clearing/erasing a window.
...
From Peter Seebach <seebs@solon.com> in PRs lib/2094 and lib/3648.
1997-05-22 21:07:32 +00:00
scottr
4f74abe8b7
Remove redundant cpu_set_kpc() prototype, found by Paul Goyette.
1997-05-22 18:40:10 +00:00
gwr
248eff8eee
Temporary work-around for PR kern/3579 (from Jonathan Stone).
1997-05-22 18:20:06 +00:00
cjs
23cbb00329
Back out previous change; bug was in src/share/mk/bsd.prog.mk.
1997-05-22 18:05:44 +00:00
kleink
b7ba6138b6
If the pgrp_id argument of TIOCSPGRP (a.k.a. tcsetpgrp()) does not specify
...
an existing process group, return EINVAL.
1997-05-22 17:35:42 +00:00
christos
aef7001870
PR/3660: Dave Huang: Fix formatting misalignments in appletalk
...
PR/3659: Dave Huang: Fix PCB reporting in appletalk
1997-05-22 17:21:26 +00:00
phil
6a1d6212ae
Fix a bug in bc_sqrt for numbers between 0 and 1.
1997-05-22 15:21:47 +00:00
lukem
76c3314d9b
a valid uid/gid *ends* in \0 (i.e, barf if (*ep != '\0'), not if (*ep == '\0'))
1997-05-22 10:38:07 +00:00
jeremy
dcfd9aaa8a
Add intro(9).
1997-05-22 03:46:33 +00:00
jeremy
a9f5946c00
Reduce redundant 'describes'.
1997-05-22 03:41:00 +00:00
jeremy
d58b5c298b
Introduction to kernel internals section.
1997-05-22 03:39:20 +00:00
mhitch
0db8e55935
DMA state was not getting saved if dmaCurPhase was data-out. If the
...
message-in was a save data pointer, the driver would loop in the
interrupt routine.
1997-05-22 03:26:16 +00:00
lukem
50820e9b86
* parse gid with strtoul() instead of atoi(), and sanity check a) the parsed
...
value was just a number, b) it doesn't exceed GID_MAX
* convert gid to a string with %u not %d
* use [gu]id_t instead of int
1997-05-22 03:24:37 +00:00
lukem
f442f20a30
* parse uid with strtoul() instead of atoi(), and sanity check a) the parsed
...
value was just a number, b) it doesn't exceed UID_MAX
* convert uid to a string with %u not %d
1997-05-22 03:14:42 +00:00
lukem
ad8e075042
in pw_scan(), parse [gu]id with strtoul() instead of atoi(), and sanity
...
check a) the parsed value was just a number, b) it doesn't exceed [GU]ID_MAX
1997-05-22 03:08:42 +00:00
lukem
920471eeec
define GID_MAX (max value permitted in gid_t) and UID_MAX (ditto for uid_t)
...
to 2^32-2
1997-05-22 03:02:50 +00:00
jeremy
d354506769
Remove extra whitespace.
1997-05-22 02:12:18 +00:00
jeremy
44572d2bb8
Description of sun3 interrupt handler interface functions.
1997-05-22 00:39:26 +00:00
jeremy
7c78d92d27
Forgot 'cat' directories.
1997-05-21 22:50:12 +00:00
jeremy
768be5bb21
Added architecture dependent subdirectories to man9.
1997-05-21 22:46:08 +00:00
jeremy
b0dc94ccd1
Added SUBDIRS= for architecture dependent directories.
1997-05-21 22:45:16 +00:00
pk
98bd013c4a
Code previous somewhat more compactly.
1997-05-21 22:26:38 +00:00
augustss
72a30783f7
Fix pasto.
1997-05-21 22:25:13 +00:00
pk
ddc2d9d857
MNAMELEN is 90.
1997-05-21 21:48:47 +00:00
pk
655f1af426
Do not force the ISBLK and ISDIR checks on the mount point.
1997-05-21 21:47:07 +00:00
mjacob
3942000d9a
Real link doesn't work because the install comes after. Use a symlink instead.
1997-05-21 21:31:43 +00:00
gwr
d4af46184c
Deal with another m68k misalignment, this time by changing a
...
short to an int (the first, "pr_type" member). The changed
member was always compared with int values anyway...
1997-05-21 20:09:24 +00:00
gwr
5e15995438
Moved db_kill_proc() and db_show_all_procs() to ddb/db_xxx.c
1997-05-21 19:56:50 +00:00
gwr
55f621803a
Moved db_show_callout() to ddb/db_xxx.c
1997-05-21 19:55:45 +00:00
gwr
e17505a9ea
Add ddb/db_xxx.c
1997-05-21 19:54:54 +00:00
gwr
25bdbcc1dc
Move some DDB stuff here from kern_clock.c and kern_proc.c
1997-05-21 19:54:00 +00:00
jonathan
d212e8744e
Include "rasterconsole.h" to get definition of NRASTERCONSOLE (rcons flag).
...
Don't try rcons on 3100s with keyboards if rcons isn't configured,
1997-05-21 19:41:08 +00:00
kleink
8385a5edde
Fix one remaining botch when copying directory trees using -R.
1997-05-21 09:48:33 +00:00