yamt
efc80878d1
use lockstatus() instead of L_BIGLOCK to check if we're holding a biglock.
...
fix PR/25595.
2004-05-18 11:59:11 +00:00
yamt
b4831906b2
introduce LK_EXCLOTHER for lockstatus().
...
from FreeBSD, but a little differently. instead of letting lockstatus()
take an additional thread argument, always use curlwp/curcpu.
2004-05-18 11:55:59 +00:00
ragge
ac1e5c0888
Fix connect() "bug": If connect() is interrupted by a signal, the connection
...
attempt is terminated, so if a process needs frequent timer interrupts
it can't ever connect() to a machine far away.
Bug found by Erik Lundgren, bugfix (for the same problem) is similar to
the way FreeBSD solved the same problem.
As a side effect, the new connect() behaviour conformes to Posix.
2004-05-18 11:31:49 +00:00
martin
804267781d
Handle STP4020_ISR0_SCINT (status change interrupt posted) - by ignoring
...
it.
2004-05-18 06:20:28 +00:00
christos
52fe589e88
Example for named.conf is dead.
...
Section 10 doc for named is dead.
2004-05-18 05:39:27 +00:00
christos
de620c98b4
Update more filelist entries for new bind. Thanks to FUKAUMI Naoki.
2004-05-18 05:38:18 +00:00
cube
5446fd12e5
Teach getopt about the new -0 option. Noted by Jeff Ito in PR 25621.
2004-05-18 04:09:21 +00:00
christos
178bd22d01
unsigned int initialized to ULONG_MAX? jeez.
2004-05-18 03:08:24 +00:00
christos
b6ea89f1ee
width arg in printf string must be int.
2004-05-18 03:08:00 +00:00
christos
aa30e715f8
mention that this is really beta3
2004-05-18 00:39:59 +00:00
christos
7729258694
Mention bind9.
2004-05-18 00:39:26 +00:00
christos
15bf338dca
Adjust filelists to bind9
2004-05-18 00:36:03 +00:00
christos
4563e44b43
Include <sys/param.h> needed by <sys/sysctl.h>
2004-05-18 00:15:29 +00:00
christos
b1fa643acc
remove old makefiles
2004-05-18 00:13:44 +00:00
christos
d981be40cf
remove garbage file
2004-05-18 00:11:33 +00:00
christos
5862d9d92c
Resolve conflicts
2004-05-18 00:10:39 +00:00
christos
9c2ff49b1e
Import bind9 build framework
2004-05-18 00:06:57 +00:00
christos
53a0028e47
Resolve conflicts
2004-05-18 00:03:56 +00:00
lukem
64ac75227d
Use ${X11ETCDIR} instead of /usr/X11R6/lib/X11 for the location of XF86Config.
2004-05-17 23:50:09 +00:00
christos
1885fbb90d
Import bind 9.3.0beta3
2004-05-17 23:43:04 +00:00
lukem
b997a4053a
Update the paths to the required_files configuration files for the
...
move from /usr/X11R6/lib/X11/<app> -> /etc/X11/<app>.
Resolves PR [misc/25613] from Jukka Salmi.
2004-05-17 23:41:27 +00:00
thorpej
896bc924e1
Supply rr_1 and wr_1.
2004-05-17 22:00:47 +00:00
thorpej
984caa9835
Fix missing parenthesis in DIAGNOSTIC message.
2004-05-17 20:47:17 +00:00
bouyer
516871a573
Add support for the Ignore Wide Residue SCSI message.
2004-05-17 20:12:34 +00:00
bouyer
1c16a590ec
Regen from esiop.ss 1.18
2004-05-17 18:38:22 +00:00
bouyer
e842696ec7
Regen from siop.ss 1.18
2004-05-17 18:38:02 +00:00
bouyer
83478e12f3
when an unexpected disconnect occurs only compute the resid; do the
...
real save data pointers when we get the message (or rather, at disconnect
time following the message).
Factor out code to do this, and to deal with xs->resid, in siop_common.c.
2004-05-17 18:37:02 +00:00
agc
f8dc59869d
Fix a reference to stale storage on the stack - malloc the new file
...
name when gunzip'ing via strdup(3). Fixes a bug whereby the new
filename would appear as gibberish when verbosely gunzipping.
Fix an off-by-one error when allocating the filename with added suffix,
and properly NUL-terminate the new filename.
It's NULL, not 0, in char * assignments - there are some still to do here.
2004-05-17 18:10:33 +00:00
mhitch
1f358dcd03
Add missing KERNEL_PROC_UNLOCK() in upcallret(). This should fix PR#22219
...
and maybe also PR#23731, which appears to be a duplicate of 22219.
2004-05-17 17:43:08 +00:00
kochi
d8c488d1ef
Fix typo (func8 -> func7)
2004-05-17 16:57:49 +00:00
wiz
a63a57aa28
Remove unimplemented and undescribed -p option from usage and man page
...
SYNOPSIS. Noted by Jeff Ito.
2004-05-17 15:38:20 +00:00
joda
c80da893ae
the EST and TM2 flags in the second cpuid register were swapped
...
(according AP-485); while here add a few more flags
2004-05-17 15:38:17 +00:00
wiz
a013e0ff4c
Use more macros.
2004-05-17 15:36:17 +00:00
chs
255a1a9db8
__sigreturn14 -> compat_16___sigreturn14
2004-05-17 14:14:18 +00:00
skrll
701ae47cdf
Fix the dynamic linker for hppa using ELF.
...
Lazy binding doesn't work 100% of the time so force immediate binding.
One possible reason is that the PLT stub blows away r20 which the
compiler might not take into account.
2004-05-17 13:16:02 +00:00
lukem
466d8fda9a
In UUDECODE_FILES, always use -p to a temporary file and then rename
...
appropriately. This simplifies the rule (IMHO), and removes the use
of :? which is buggy on older makes...
2004-05-17 12:58:17 +00:00
yamt
92e4dbdd94
#if 0 out CREATE optimization for now because it has a problem in the case
...
of O_CREAT|O_TRUNC, which is hard to be fixed without changing upper layer.
2004-05-17 12:17:18 +00:00
bouyer
a8b77ccfc4
Regen from esiop.ss 1.17.
2004-05-17 11:11:20 +00:00
bouyer
76fa396c1d
Properly compute xs->resid, instead of assuming it'll always be 0 when
...
a command is done.
2004-05-17 11:10:24 +00:00
skrll
e88c851d08
Test before commit.
2004-05-17 11:00:01 +00:00
skrll
c007da99a0
Update for ELF.
2004-05-17 10:44:22 +00:00
skrll
0556cd7d3c
Re-arrange/correct some asserts.
2004-05-17 10:23:58 +00:00
lukem
fe7056555c
Move '${MAKEDIRTARGET} x11 distribution' from Makefile::distribution to
...
etc/Makefile::distribution, and only perform if ${MKX11}!=no.
Should fix a problem experienced by Alistair whilst doing a "make release".
2004-05-17 07:00:16 +00:00
agc
cdbc6c6463
Provide the default location for html documentation (html_directory),
...
otherwise postfix will fail with the error message:
May 16 21:56:56 system postfix[175]: fatal: bad string length 0 < 1: html_directory =
2004-05-17 06:00:14 +00:00
lukem
7c3f906965
no need to define INTERNALLIB here
2004-05-17 05:49:54 +00:00
mrg
2b83a2e912
add EI_NIDENT (16) as seen in other <elf.h> headers.
2004-05-17 02:28:17 +00:00
simonb
e15af7f879
Note "du -n".
2004-05-17 01:57:55 +00:00
simonb
ef7c5f2d47
Add a "-n" flag that will ignore files/directories with the "nodump"
...
flag set. Useful when used in conjunction with "dump -h" to size dumps.
2004-05-17 01:56:19 +00:00
thorpej
e2c312b8ed
Add IFM_FLOW, IFM_ETH_TXPAUSE, and IFM_ETH_RXPAUSE descriptions, from
...
HITOSHI Osada. Also fix up the descrioption of IFM_ETH_MASTER.
2004-05-17 00:32:26 +00:00
thorpej
bfd469cd6f
If the PHY has 1000BASE-T capability, check to see if a 1000BASE-T speed
...
was negotiated, and check if we ended up mastering the clock if so.
2004-05-17 00:17:28 +00:00