scottl
b5d57460e7
Move references to the recently removed worm directory.
2004-07-15 15:37:56 +00:00
nyan
0ecf033001
Move the fdc_alloc_resources function into the bus front end.
2004-07-15 15:00:02 +00:00
mbr
d91d1bbf6a
Reenable nullfs for local links. The change from 'struct vfsconf'
...
to 'struct xvfsconf' broke auto configuration. Patches have been
submitted to the vendor.
2004-07-15 13:24:44 +00:00
tjr
33531b4561
Document incorrect handling of multibyte characters.
2004-07-15 11:10:09 +00:00
tjr
b15287b511
Avoid passing negative values to isdigit() on machines with signed chars.
2004-07-15 10:26:38 +00:00
brian
9de689b2a4
Fix ``set ifaddr''. The code was actually using an uninitialised variable,
...
but conveniently, because ncpaddr.ncpaddr_family != AF_INET, the call to
ncpaddr_getip4addr() became a no-op leaving the local address as it was
(defaulting to whatever my hostname resolves to).
PR: 62050
Submitted by: Peter Jeremy <peter.jeremy@alcatel.com.au>
MFC after: 3 days
2004-07-15 09:42:16 +00:00
murray
e3c768ec2b
Add a publisher variable with the URL for the FreeBSD Project, and put
...
this into the ISO headers by specifying the -P option to mkisofs.
Obtained from: share/examples/worm/makecdfs.sh
2004-07-15 09:28:03 +00:00
tjr
105f4be1ec
Avoid passing negative values to isspace() on machines with signed chars.
2004-07-15 09:23:04 +00:00
tjr
c325808d99
Respect locale settings from the environment.
2004-07-15 08:54:41 +00:00
tjr
ca733e8deb
Avoid passing negative values to isspace() on systems with signed chars.
2004-07-15 08:27:04 +00:00
phk
803ccd11bd
Do a pass over all modules in the kernel and make them return EOPNOTSUPP
...
for unknown events.
A number of modules return EINVAL in this instance, and I have left
those alone for now and instead taught MOD_QUIESCE to accept this
as "didn't do anything".
2004-07-15 08:26:07 +00:00
tjr
953f0781f4
Respect locale settings from the environment.
2004-07-15 08:13:56 +00:00
alfred
85b9b683c5
Cleanup shutdown output.
2004-07-15 08:01:00 +00:00
roam
e3585916c4
A couple of grammar fixes in the bktr options section.
...
PR: 66828 (mostly)
Submitted by: Michel Lavondes <fox@vader.aacc.cc.md.us>
MFC after: 2 weeks
2004-07-15 07:52:27 +00:00
roam
42cbc57cc9
Fix 'camcontrol rescan' syntax and use the proper indentation for
...
the FILES list.
PR: 66827
Submitted by: Michel Lavondes <fox@vader.aacc.cc.md.us>
MFC after: 2 weeks
2004-07-15 07:34:14 +00:00
tjr
f08887b3c0
Don't pass negative values into <ctype.h> functions on machines
...
with signed chars.
2004-07-15 07:33:56 +00:00
tjr
93aa2d1095
Print size_t with %zu, not %d.
2004-07-15 07:30:15 +00:00
tjr
1b80384e1e
Respect locale settings from the environment.
2004-07-15 07:26:20 +00:00
tjr
1983934f90
Add incorrect multibyte character handling to the already long list
...
of bugs.
2004-07-15 06:59:34 +00:00
tjr
017e07ace7
Use freopen() instead of a nasty hack.
2004-07-15 06:57:36 +00:00
tjr
d985048f3f
Document incorrect handling of multibyte characters.
2004-07-15 06:43:52 +00:00
tjr
da55c6627b
Ensure that suffix matches occur on character boundaries.
2004-07-15 06:15:10 +00:00
tjr
34ec91f8f3
Document line length and multibyte character limitations.
2004-07-15 05:12:04 +00:00
murray
38d4e46311
Remove Walnut Creek CDROM script that Jordan wrote in the 90s.
...
This functionality is largely in src/release/${ARCH}/mkisofs.sh now.
PR: docs/43569
2004-07-15 05:04:39 +00:00
tjr
4b6b226973
Use err() instead of perror(), exit().
2004-07-15 04:56:41 +00:00
jhb
c2c982b6fb
Remove some serious foot-shooting potential from the release Makefile. For
...
some unknown reason, when LOCAL_PATCHES and LOCAL_SCRIPT were originally
added, they were silently ignored if the actual file did not exist. As a
result, if one mistyped the pathname to a patch or script, then the release
silently succeeded. However, it was not built with the desired changes and
no warning was given to inform the builder either. This commit explicitly
checks to see that all of the defined patches and scripts exist up front
and bails if any of them do not exist. I lost several hours of valuable
sleeping time this evening due to this "feature" so I've finally gone and
ripped out. I've tripped over this in the past several other times as
well.
Glanced at by: scottl
2004-07-15 04:52:57 +00:00
tjr
161ba34cdc
Use warn() instead of perror().
2004-07-15 04:51:21 +00:00
davidxu
467e897328
Add libthread_db assisted debugging support module.
2004-07-15 04:51:04 +00:00
tjr
67e32debb8
Use warn() instead of perror().
2004-07-15 04:45:24 +00:00
alfred
d40ef0b9da
Tidy up system shutdown.
2004-07-15 04:29:48 +00:00
davidxu
3467127696
type prgregset_t really should be an array. this is odd, however, other
...
systems defined interfaces in thread_db.h use prgregset_t but not
prgregset_t * to be a output parameter, this is the only way to maintain
source code compatible with them.
2004-07-15 03:52:17 +00:00
alfred
083439cd74
Disable SIGIO for now, leave a comment as to why it's busted and hard
...
to fix.
2004-07-15 03:49:52 +00:00
davidxu
f676d9e834
Add proc_service.h, the common file both debugger and libthread_db will
...
use, program wants to load libthread_db.so should provid proc service
interface.
2004-07-15 03:43:18 +00:00
davidxu
8774fbf79c
Add my initial work of libthread_db. The library is used by gdb to debug
...
threaded process. Current, only libpthread is supported, but macrel will
work on it to support libthr and libc_r.
2004-07-15 03:36:35 +00:00
njl
033cedfe2b
Clean up the output on reboot by keeping completion messages on the same
...
line as the announcement. Someone should probably update the "buffers
remaining" message since we now no longer should have any buffers remaining
at that point.
2004-07-15 03:20:08 +00:00
alc
dc267d738b
A loop in pmap_remove() should use TAILQ_FOREACH_SAFE(), not
...
TAILQ_FOREACH(), because the loop deletes elements from the list.
Reviewed by: marcel@
2004-07-15 03:20:00 +00:00
kientzle
47308fc5b0
Make the day/month ordering dependent on the current locale by
...
testing the locale at program startup and setting a flag, then
using that flag to determine appropriate strftime() arguments.
2004-07-15 03:14:46 +00:00
kientzle
a27f47d57c
Style: rename 'mkdirpath' so it's clearer exactly what it does.
...
(To be precise, it creates the parent dir of the provided path.)
2004-07-15 03:13:27 +00:00
phk
e1ff6aefeb
A module with no modevent function gets modevent_nop() as default.
...
Until now the function has just returned zero for any event, but
that is downright wrong for MOD_UNLOAD and not very useful for any
future events we add where it may be crucial to be able to tell
if the event was unhandled or successful.
Change the function to return as follows:
MOD_LOAD -> 0
MOD_UNLOAD -> EBUSY
anything else -> EOPNOTSUPP
2004-07-14 22:37:36 +00:00
njl
8cd64d8476
Add a comment separator.
2004-07-14 22:09:32 +00:00
simon
f223aa9c3b
Add a HARDWARE section which lists supported devices. The actual
...
device listings has been moved (and in some cases more or less
rewritten) from the DESCRIPTION section.
2004-07-14 21:58:17 +00:00
rwatson
444caa3e37
Add a note indicating that the eh_prototype field used to construct
...
ethernet headers is unsynchronized.
2004-07-14 20:31:37 +00:00
rwatson
d16eda5f5b
Add a mutex ng_tty_mtx to protect the global variable ngt_unit. Note
...
that the locking of globals here isn't complete, and there's also a
locking issue relating to calling into and out of the tty code.
2004-07-14 20:31:05 +00:00
rwatson
dca3d30173
Add ng_ppp_latencies_mtx, a global mutex to protect the latency list.
...
Note that the table is a hack, and so is this mutex.
Reviewed by: glebius
2004-07-14 20:29:54 +00:00
rwatson
cd6588d818
Introduce a new mutex, ng_fec_mtx, to protect the global unit list to
...
synchronization allocation of FEC unit numbers.
Reviewed by: glebius
2004-07-14 20:27:33 +00:00
rwatson
c68bc3f8e1
Introduce a new mutex, ng_eiface_mtx, to protect the global unit list
...
lock used to synchronize allocation of unit numbers for new netgraph
ethernet interfaces.
Reviewed by: glebius
2004-07-14 20:26:29 +00:00
rwatson
4ce66101d9
Introduce a new mutex, ng_iface_mtx, to protect the global unit list
...
lock used to synchronize allocation of unit numbers for new netgraph
interfaces.
Reviewed by: glebius
Tested by: glebius
2004-07-14 20:24:21 +00:00
marks
d6b2e11fd4
Some laptops report the "design-capacity" instead of the "real-capacity"
...
when the battery is fully charged. That breaks some of the arithmetic in
calculating the remaining capacity (ends up with more than 100%).
This commit makes sure the max is 100.
Approved by: njl
2004-07-14 19:31:31 +00:00
csjp
32f92e8a71
In addition to the real user ID check, do an explicit jail
...
check to ensure that the caller is not prison root.
The intention is to fix file descriptor creation so that
prison root can not use the last remaining file descriptors.
This privilege should be reserved for non-jailed root users.
Approved by: bmilekic (mentor)
2004-07-14 19:04:31 +00:00
jhb
546527a0dc
Correct bounds check in lapic_create().
...
Submitted by: "Ted Unangst" tedu at coverity.com
2004-07-14 18:12:15 +00:00