bde
c296e1773c
Fixed SUBDIR order.
1998-11-29 02:47:52 +00:00
wosch
27d1e786a6
Set TMPDIR to /tmp
...
Remove the temp directory in trap.
Replace the buggy awk script with a correct perl script.
Don't make a copy of the input data anymore if the input is already
sorted (option -presort). This scheme avoid large temporary files in
/tmp.
1998-11-29 00:59:20 +00:00
wosch
f14200ee15
Recommended TMPDIR is now /tmp (undo rev 1.6)
1998-11-29 00:57:03 +00:00
wosch
d13a028d3d
Added a sort option to find(1).
...
The sort option make it possible to build the locate
database without large (usually 20-100MB) temp files.
1998-11-29 00:54:21 +00:00
eivind
083b0d7688
Add support for pthread_mutexattr_settype(). As a side effect of
...
testing this, fix MUTEX_TYPE_COUNTING_FAST. Recursive locks now work.
1998-11-28 23:52:58 +00:00
bde
9eb9485178
Fixed sloppy clearing of TS_BUSY. Don't clear it until the transmitter
...
is completely empty. There is an interrupt for output completion. It
is painful to use, but polling method used in the corresponding fix in
sio.c (rev.1.152) can't be used because there is no status bit for
transmitter-empty. Now ttywait() works right.
Reminded by: NIST-PCTS
1998-11-28 15:48:09 +00:00
bde
8f11507158
Merge from sio.c rev.1.163:
...
Don't call timeout() for DTR wakeup if the relevant timeout is already
active. This fixes "timeout table full" panics when sufficiently many
cyopen()s are interrupted while they are sleeping waiting for the
timeout to expire.
1998-11-28 13:18:16 +00:00
jkh
db70b20239
Revert previous commit; write idea, wrong way.
1998-11-28 13:14:58 +00:00
rnordier
a93fa46928
Refer to "da" rather than "sd" device.
1998-11-28 10:02:52 +00:00
dfr
3aaf69d186
Add support for 'vmstat -i'.
...
Submitted by: Hidetoshi Shimokawa <simokawa@sat.t.u-tokyo.ac.jp>
Obtained from: NetBSD
1998-11-28 09:55:16 +00:00
rnordier
369a99d1d7
Refer to "da" rather than "sd" device.
...
Suggested by: jdp
1998-11-28 09:43:31 +00:00
jkh
1f8fec25e8
Remove netboot from build order; it's not ready for the limelight
...
and probably doesn't belong there anyway.
1998-11-28 08:19:24 +00:00
joerg
9d28e1f2b2
Fix my breakage of `make installworld'. However, i don't think it's right to
...
install all those images at all (nor to install them under /usr/mdec), given
the high degree of customization this Makefile needs in order to get images
that are actually useful for some NIC.
Submitted by: John Hay <jhay@mikom.csir.co.za>,
Paul Allenby <pallenby@mikom.csir.co.za>
1998-11-28 08:03:24 +00:00
msmith
09596be77b
Alias Adaptec as a vendor of Cogent NICs.
1998-11-28 00:25:32 +00:00
jdp
e01526ee35
Add new Korean FTP mirror sites.
1998-11-27 22:48:58 +00:00
dfr
6c22f92d39
Use the runpath of the main program for locating libraries loaded by
...
dlopen().
Reviewed by: jdp
1998-11-27 21:19:52 +00:00
dg
b4bceb0b07
Compare p_cpulimit with RLIM_INFINITY before comparing it with the process
...
runtime. p_runtime is unsigned while p_cpulimit is not, so this avoids the
nasty side effect of the process getting killed when the runtime comes up
"negative" due to other bugs.
1998-11-27 11:44:22 +00:00
bde
3e9a76f2a5
Ignore objects used to build utilities (*aicasm*.o and *genassym*.o).
1998-11-27 10:18:56 +00:00
jkoshy
e8d40b7bc1
Direct std{err,out} to /dev/null when invoking sysctl(8) for setting
...
`nfs_access_cache_timeout'.
Submitted by: Andre Albsmeier <andre.albsmeier@mchp.siemens.de>
1998-11-27 07:06:11 +00:00
tegge
03c8e15ce9
Don't forget to update the pmap associated with aio daemons when adding
...
new page directory entries for a growing kernel virtual address space.
1998-11-27 01:14:21 +00:00
jkh
0e6b1a9b50
Update for XFree86 3.3.3
1998-11-27 00:30:10 +00:00
tegge
930e900772
Attempt to handle interrupts delivered to all IO APICs by using the first
...
IO APIC with a sufficient number of pins.
1998-11-26 23:14:23 +00:00
n_hibma
1f1ab4819c
Initial commit of ported NetBSD USB stack
1998-11-26 23:13:13 +00:00
n_hibma
cb434691d9
Removed probes for USB chips 82371xB (done in dev/pci/uhci_pci.c)
1998-11-26 21:57:52 +00:00
eivind
da99bd7667
Staticize some more.
1998-11-26 18:54:52 +00:00
eivind
3cf3a6389e
Staticize.
1998-11-26 18:50:24 +00:00
bde
8fdbb5fce3
Fixed the previous fix - stathz doesn't give the statclock frequency
...
when it is 0.
Submitted by: mostly by Hidetoshi Shimokawa <simokawa@sat.t.u-tokyo.ac.jp>
1998-11-26 16:49:55 +00:00
bde
043d2a6202
Oops, yet again back out some local changes that shouldn't have been
...
in the previous commit.
1998-11-26 14:05:58 +00:00
bde
0d3ca540ea
Fixed scaling of p_pctcpu. It was wrong by a factor of stathz/hz.
...
Until recently, this was half compensated for in at least ps and top
by multiplying by 100/stathz to get a better wrong factor of 100/hz.
1998-11-26 14:00:08 +00:00
bde
1c6d286a62
Removed unused nlist'ed variables stathz and hz. These used to be used
...
to half compensate for broken scaling of p_pctcpu in the kernel, but the
previous commit removed this compensation. %cpu values will be wrong by
a factor of stathz/hz until the kernel is fixed. (The kernel gets it
wrong by a factor of stathz/hz, and top got the compensation wrong by
a factor of 100/stathz.)
1998-11-26 12:59:21 +00:00
joerg
d77f34aad8
sd0 -> da0
1998-11-26 12:24:35 +00:00
kato
0d1ee57ed3
Sync with sys/i386/boot/netboot/Makefile revision 1.20.
1998-11-26 11:47:51 +00:00
joerg
b3b40ee728
Make netboot work again. All this depends on the object format being
...
a.out (by now).
1998-11-26 11:11:29 +00:00
joerg
26759045ab
...nor does this old TDC3620 like to be asked for compression.
...
But well, now it's running again!
1998-11-26 10:47:52 +00:00
paul
cf228370b7
Add Id string to if_lnc.h and fix up copyrights to be consistent and up to date.
1998-11-26 00:57:32 +00:00
paul
145a163b3f
Despite what people may think the Am79C970 returns the chip id of an Am79C965.
...
Fix the PCI probe code to accept this id otherwise cards based on the Am79C970
fail to probe.
1998-11-26 00:53:45 +00:00
jkoshy
27ab9c8e65
Add a manual page for man(7).
...
Thanks-to: Joerg Wunsch for sending me a sample page for inspiration.
1998-11-26 00:21:24 +00:00
msmith
19d153e3fb
Don't suggest that NO is allowed here; you use "0" or "" to turn the cache
...
off.
Submitted by: jdp
1998-11-25 21:16:43 +00:00
jdp
fcce754470
Remove files that we don't use and are unlikely to use. You can
...
still get them with "cvs upd -r pam_unpruned" if you want to look at
them.
1998-11-25 19:46:10 +00:00
imp
aec3e1ab2f
o Patch, slightly altered, from Graham Menhennitt for older aha 1542B
...
cards. My machine didn't tickle this problem, so I can't tell if
it fixed anything or not. However, it didn't break my already working
1542-{B,C,CF,CP} probes.
o Minor comment correction
o Minor correction in printf
1998-11-25 19:12:56 +00:00
abial
600fcdb1f2
Fix errors in last commit.
1998-11-25 14:59:28 +00:00
joerg
2f81437fae
Mention the preprocessor changes to ipfw(8).
1998-11-25 13:55:31 +00:00
joerg
3b77b17251
This old firmware of the TDC3620 hangs the SCSI bus upon serial
...
number requests. Don't ask it so.
1998-11-25 13:50:10 +00:00
abial
5edc4e61b8
New revision of UCI project document. Comments are welcome...
1998-11-25 11:08:54 +00:00
kato
f35e92b7ca
Reorder entries of ed drivers. Many NICs can be automatically
...
detected, even though a user doesn't disable unused entries with
userconfig.
Submitted by: Nobuyuki Koganemaru <kogane@koganemaru.co.jp>
1998-11-25 11:00:31 +00:00
kato
19f702d89c
Cosmetic change.
1998-11-25 10:53:21 +00:00
dfr
68f5aa320d
Port top to the alpha.
...
Submitted by: Hidetoshi Shimokawa <simokawa@sat.t.u-tokyo.ac.jp>
1998-11-25 09:45:28 +00:00
dfr
a4b83901e2
Fix formatting of %CPU value on alpha.
...
Submitted by: Hidetoshi Shimokawa <simokawa@sat.t.u-tokyo.ac.jp>
1998-11-25 09:34:00 +00:00
dg
3d709a2bc7
Add missing splvm protection around unqueue call. Without this, the page
...
queues would eventually get corrupted.
1998-11-25 07:40:49 +00:00
asami
5739b5d848
Change USE_QT to use version 1.41. I know this is a little premature,
...
but I'd like as many people to test this before the release.
1998-11-25 00:12:27 +00:00