perry
eeebdec53e
Clean up this mess a lot. I believe we still have the following
...
issues (at least):
1) sbrk is defined as returning char *, which violates XPG
2) I'm not clear on what happens if you try to sbrk() on a negative
incr that is less than the page size. I'm guessing "nothing", but we
should document this behavior.
3) XPG says some interesting things about whether new pages are
guaranteed zeroed. We say nothing about this. We should document our
behavior.
4) It isn't clear if *we* guarantee that malloc and sbrk can be mixed
in our API (I've documented that it isn't universally portable.)
We really should clean these up, too.
1999-07-06 16:36:15 +00:00
minoura
76875808ab
Build INSTALL kernel automatically.
...
obj directory handling for read-only /usr/src.
Refer DESTDIR.
1999-07-06 16:22:58 +00:00
christos
78a99dbab7
portability fixes:
...
- don't use timespecs in struct stat on non 4.4BSD systems
- don't assume that tv_sec is a time_t
1999-07-06 15:11:14 +00:00
christos
4bcc4c73c4
pacify gcc-2.8 uninitialized variable warnings, and only use timespecs in
...
struct stat on BSD4_4 systems.
1999-07-06 14:45:31 +00:00
darrenr
b1319ee5b3
EOPNOTSUPP was incorrectly spelt as EOPNOSUPPORT
...
add ENFILE to list of errors.
1999-07-06 14:39:56 +00:00
drochner
2df8761fac
for incoming broadcasts, strip IP/UDP header correctly
...
wrap a line
1999-07-06 14:37:47 +00:00
christos
2f1646ea98
Remove -DDEBUG
1999-07-06 14:37:05 +00:00
christos
6b709e3d6d
use syslog instead of fprintf, otherwise no-one will see the error
1999-07-06 14:36:10 +00:00
christos
9453db6b2d
Use LIBEDITDIR instead of CURDIR so we can use that Makefile to compile
...
libedit from another directory.
1999-07-06 14:10:21 +00:00
christos
80d9d7d175
Regular bourne shells don't have the -q option (from Chuck Cranor)
1999-07-06 14:02:56 +00:00
christos
f914977fae
add -q in the synopsis line
1999-07-06 14:01:01 +00:00
itojun
a7d1c8590c
mld6query: throw IPv6 MLD query (similar to IPv4 IGMP)
1999-07-06 13:32:01 +00:00
itojun
26c3d764fd
add NetBSD RCS ID.
1999-07-06 13:14:54 +00:00
itojun
22ece3e4cd
add NetBSD RCS ID. retain original RCS ID (without $).
1999-07-06 13:13:03 +00:00
itojun
7e91967d7e
fix for 64bit arch (sizeof(void *) != sizeof(int))
1999-07-06 13:08:12 +00:00
itojun
0ff82b2f3d
fix compilation on alpha.
1999-07-06 13:05:14 +00:00
itojun
6a12600abf
fix for 64bit arch, where sizeof(size_t) != sizeof(int).
...
add NetBSD RCS ID.
1999-07-06 13:02:09 +00:00
hubertf
657f0ba4f7
Actually generate MD5 checksums, as reported in PR 7928.
...
Approved by Dr. Lex Wennmacher <wennmach@geo.Uni-Koeln.DE>
1999-07-06 12:59:12 +00:00
itojun
dcc13cdd33
sync with KAME/NetBSD 1.4, SNAP kit 19990705.
...
key changes are:
- icmp6 redirect fix (dst check)
- revised ip6 multicast check for loopback i/f
- several RCS ID cleanups
1999-07-06 12:23:19 +00:00
itojun
6ea6ccf105
checked build on alpha and i386, with GENERIC.v6.
...
fixed several sizeof(void *) and sizeof(size_t) issues on alpha.
Thanks to: Dave Huang and Tim Rightnour
1999-07-06 08:55:56 +00:00
thorpej
0ecdd58add
Define _RTLD_SOURCE so this builds again. PR 7927, itojun@itojun.org.
1999-07-06 08:04:31 +00:00
augustss
7875415701
Add the detach and activate entry points to the cfattach struct.
1999-07-06 07:42:23 +00:00
augustss
319c42848d
Add some sanity checks.
1999-07-06 07:12:03 +00:00
cgd
392fa3123d
one 'domain' -> 'DNS domain' that slipped through the cracks
1999-07-06 06:10:53 +00:00
cgd
891f175906
beware whitespace at ends of lines in messages: it's actually meaningful!
...
while here, clean up other whitespace at EOLs in msg files to make grepping
easier.
1999-07-06 06:10:04 +00:00
mjacob
c9d36d5b4c
add in (controlled by option) 2200 Expanded Lun F/W
1999-07-06 05:43:51 +00:00
itojun
f3c72d8503
fix IPSEC (but not INET6) build.
...
PR: 7921, 7922, 7924
From: rafal@mediaone.net
1999-07-06 05:09:22 +00:00
cgd
c1b7b40399
from the comment added to the code:
...
> XXX (in)sanity check. We don't do proper datasize checking
> XXX for anonymous (or private writable) mmap(). However,
> XXX know that if we're trying to allocate more than the amount
> XXX remaining under our current data size limit, _that_ should
> XXX be disallowed.
This is one link on the chain of lossage known as PR#7897. It's
definitely not the right fix, but it's better than nothing.
1999-07-06 02:31:05 +00:00
cgd
5cc6a54251
fix allocation handling bugs in amap_alloc1(). if the first or second
...
sub-structure malloc() failed, it was quite likely that the function
would return success incorrectly. This is this direct cause of the bug
reported in PR#7897. (Thanks to chs for helping to track it down.)
1999-07-06 02:15:53 +00:00
itojun
2842a2f6bb
fix name resolution problem when you have "hosts: files dns" on
...
/etc/nsswitch.conf.
This was because of two reasons:
- /etc/hosts lookup code damaged some of internal
state used by gethostbyname2().
- getaddrinfo() was not persistent enough against errors.
Sorry for the delay, and hope this fix all the following PRs
(I checked in my environment immitating those PRs and it worked for me)
PR: 7901, 7912, 7921
1999-07-06 02:00:41 +00:00
fvdl
a32341998c
Add COMPAT_AOUT to GENERIC
1999-07-05 22:40:34 +00:00
thorpej
4d36288136
index -> ldx (and similar in some related variable names). Avoids a lint
...
warning.
1999-07-05 22:14:38 +00:00
thorpej
55fcfba6fe
Oops, back out 1.21. Christos and I apparently stepped on each other.
1999-07-05 22:12:20 +00:00
christos
06b51a1a11
s/index/idx/
...
s/EXTRA_SANITY/MALLOC_EXTRA_SANITY/
const poisoning
use sysconf to get the pagesize
1999-07-05 21:55:46 +00:00
thorpej
3cedf1e346
Compute page size related parameters at run-time.
1999-07-05 21:49:05 +00:00
hubertf
057479d6da
Add sidplay information, submitted in PR 7918 by Antti Kantee <pooka@iki.fi>
1999-07-05 21:38:21 +00:00
thorpej
b2146da05a
EXTRA_SANITY -> MALLOC_EXTRA_SANITY, consistently.
1999-07-05 21:08:38 +00:00
mjacob
8fc3744ddd
Upgrade 2100 F/W and add 2200 f/w.
1999-07-05 20:33:58 +00:00
mjacob
f428cf36fa
Change to approved NASA/Ames copyright. Add Fabric support. Fix SCCLUN support.
...
Add code that tries to track LoopID shifting.
1999-07-05 20:31:35 +00:00
mjacob
3bb408eb05
Change to approved NASA/Ames copyright. Add in Qlogic 2200 support.
1999-07-05 20:28:11 +00:00
mjacob
c0e65db53f
quiesce the alpha compiler
1999-07-05 20:04:50 +00:00
mjacob
4a7b34ded4
add missing include for memset prototype
1999-07-05 20:01:09 +00:00
thorpej
206408b533
Protect certain definitions from view by crt0, by wrapping them in
...
#ifdef _RTLD_SOURCE.
Should fix the "variable page size" build error of crt0 on the SPARC.
1999-07-05 17:55:34 +00:00
kleink
2175038069
Some cleanup; g/c unneeded lint stub files.
1999-07-05 15:54:18 +00:00
bouyer
8d82c2165f
Translate.
1999-07-05 12:08:09 +00:00
mjacob
fb44b37fd0
add some default options for the ISP (for fabric/scclun eanbles)
1999-07-05 11:38:35 +00:00
agc
42de521154
Correct typo in synopsis.
1999-07-05 10:59:08 +00:00
fvdl
b82e1a8b93
EXEC_ELF32 is standard now.
1999-07-05 09:14:09 +00:00
fvdl
454190a76b
Switch the i386 port to ELF.
1999-07-05 09:13:04 +00:00
fvdl
12e846384a
The i386 port does not use ld.so.conf anymore with ELF.
1999-07-05 09:02:55 +00:00