scottl
78c87e3f08
Alas, poor matcd, I knew ye well.
...
It doesn't work.
It cannot be made to work.
Goodbye.
X-MFC after: ASAP
2002-10-04 06:06:04 +00:00
tjr
f213f77cc2
Add a placeholder implementation of wcscoll() and wcsxfrm() which gives
...
locale-sensitive collation only in single-byte locales, and just does
binary comparison for the others with extended character sets.
2002-10-04 03:18:26 +00:00
wollman
2c7ac0ae06
Yesterday, FreeBSD-current ate my disklabel.
...
Today, I wrote a program to tell me where the partitions used to be.
Now I have my /media filesystem back.
2002-10-04 03:06:16 +00:00
mdodd
99055665a7
Minor style(9) changes.
2002-10-04 02:21:26 +00:00
mdodd
c475cde7a9
Remove duplicate calls to make_dev().
2002-10-04 01:58:55 +00:00
peter
7f643d5314
Gah, spell extern correctly. Do not trust cut/paste via old mozilla
...
builds.
2002-10-04 01:57:46 +00:00
peter
8110d1fcc7
List the IO SAPIC delivery mode definitions.
2002-10-04 01:33:30 +00:00
peter
978d530510
Add some unspeakable hackery to the tree under #ifdef __ia64__ to work
...
around limitations in the ia64 kernel stack handling code. Basically
preallocate a bunch of threads (and hence kstacks) while contigmalloc()
still works, and never free them back to the general memory pool. After
the system has been running for a while, contigmalloc() eventually fails
at a critical momemt and panics the system.
2002-10-04 01:31:39 +00:00
peter
5c8b1185c3
Declare itc_frequency and itm_reload.
2002-10-04 01:23:58 +00:00
grehan
93f545f536
Clean up ddb warnings/errors and enable in GENERIC
...
Approved by: benno
Motivated by: gallatin
2002-10-04 01:19:18 +00:00
grehan
40bdd697c2
- fix zero-sized stack alloc from previous commit. a default is now
...
selected ala sparc64
- KSEIII routines implemented (taken from i386/sparc64)
Approved by: Benno
2002-10-04 01:13:34 +00:00
peter
8fd35a03b5
Do a bit of rude hackery to get clock interrupts on all CPUs. This
...
is partly based on the Alpha system which duplicates the clock to
each cpu, instead of doing a clock roundrobin like on i386. This means
we get hz * ncpu clocks per second and so we have to seperate clock
sampling from actual 'do the work' clock processing. The BSP runs the
complete processing, the rest just sample state etc.
Using the on-cpu interval timer is not ideal as it will drift. There
is more to be done here, we should use an external clock source.
2002-10-04 01:00:35 +00:00
peter
cfe8b263a0
Oops, missed this one. Fix a printf format error on 64 bit systems
...
where sizes are long instead of int.
2002-10-04 00:35:22 +00:00
peter
21201253d2
Fix printf format errors on 64 bit systems where sizes are long
...
instead of just int.
2002-10-04 00:33:46 +00:00
peter
f5c77557fc
Display the name of the acpi node that we do not find the pci interrupt
...
routing table for.
2002-10-04 00:32:09 +00:00
peter
e3b4d3d562
EFI GPT partitions use 'p' as a slice seperator. eg: da0p1 or da0p217.
...
(There is a theoretical limit of 16384 partitions)
2002-10-04 00:29:26 +00:00
peter
bdd73e1df9
Make the man page for utmp/lastlog match the actual definitions.
2002-10-04 00:25:50 +00:00
peter
ddac698eac
Drop login.c and logwtmp.c from the library build. None of the apps
...
that we build use it, and any that do should be using the official
login()/logwtmp() in libutil.
2002-10-04 00:24:31 +00:00
peter
e9e7a167a6
Update stubs for post-kseIII.
2002-10-04 00:19:58 +00:00
peter
712188a09e
Update for post-kseIII
2002-10-04 00:18:21 +00:00
rwatson
ddb3d2b4ee
Correct a problem wherein NFS servers running NFSv2 would not return
...
certain classes of failure responses to the client during a failed
remove operation.
Submitted by: Ian Dowse <iedowse@maths.tcd.ie>
2002-10-03 21:50:37 +00:00
schweikh
510f8bbd85
Fix all whitespace style bugs where spaces have been used
...
where tabs should have been. Cut & paste disease?
Spotted by: vi(1) tabstop=4
MFC after: 2 weeks
2002-10-03 20:39:29 +00:00
peter
d0bc83d7d3
Move swblk_t from sys/types.h to sys/dmap.h, the only include that uses
...
it. It's also only used in vm/vm_swap.c, but that is also the only source
file that #include's <sys/dmap.h>. sys/dmap.h could probably be embedded
entirely in vm_swap.c since that is the only consumer of it.
2002-10-03 20:30:09 +00:00
ken
1e1bdbe46b
Fix style problems in the quirk entry section.
...
MFC after: 2 weeks
2002-10-03 19:59:24 +00:00
obrien
f82ce26f64
Add stpcpy(3).
2002-10-03 19:51:04 +00:00
obrien
ae09b5969d
Add stpcpy(3).
2002-10-03 19:39:20 +00:00
johan
b8f13ad643
Actually implement gzip's -c option. minigzip now also doubles
...
as zcat properly.
PR: 13043
Submitted by: Toshihiko ARAI <toshi@jp.freebsd.org>
Jonathan Towne <jontow@twcny.rr.com>
Approved by: peter, sheldonh (mentor)
MFC After: 2 weeks
2002-10-03 19:30:22 +00:00
mike
96a42355e2
Fix various style(9) bugs:
...
o Unusual order of #ifndef _FOO_H_, followed by license.
o Missing tabs in typedef and #define.
o Reversed comment for #endif.
2002-10-03 18:34:13 +00:00
mike
440b25e6ba
Cope with a GCC bug by using an alternative, but equivalent function
...
prototype for regexec().
Noticed by: robert
2002-10-03 18:12:03 +00:00
ume
6448ec6d62
Allocate 64K recieve buffer for DNS responses.
...
Though res_query.c also defines and refers MAXPACKET, it is not
related to ansbuf. So, I didn't touch res_query.c.
2002-10-03 17:25:33 +00:00
bde
84d13cfde4
Oops, the previous version was a last minute test version with off_t
...
replaced by int instead of size_t.
Spotted by: fanf
2002-10-03 17:19:36 +00:00
nyan
e9daa69b52
Connected boot2.
2002-10-03 16:21:40 +00:00
nyan
15190a2228
Added some header files from -stable and fixed the boot[12] programs.
2002-10-03 16:20:14 +00:00
bde
6e48538b41
Use a non-bogus type for representing the values of offsets in structs.
...
off_t is for offsets in files, and it is signed so it was no better
than the original type of int for avoiding warnings from broken lints,
except accidentally on machines like i386's where size_t is smaller
than off_t.
2002-10-03 15:00:07 +00:00
fanf
bb7f39d2ed
Fix some twelve hour clock braindamage. The range for hours is 0-23 not 1-12.
...
MFC After: 1 week
2002-10-03 14:11:29 +00:00
tjr
064f96637b
Improve three instances of questionable or confusing grammar.
2002-10-03 14:09:06 +00:00
tjr
89d813cf15
Add an example.
2002-10-03 14:07:26 +00:00
rwatson
761c7aa0fc
Updated text for the MAC framework, UFS2.
2002-10-03 13:46:09 +00:00
tjr
e3f15214bf
Document towlower() and towupper() in separate manual pages instead of
...
trying to confusingly document both on the same page. The new manual pages
are based on tolower(3) and toupper(3) instead of the old towlower(3).
2002-10-03 11:23:06 +00:00
tjr
b9c5c09473
Point out that although toupper() and tolower() really accept rune_t's
...
and not just unsigned char's, callers should use towupper() and towlower()
instead when working with wide characters if portability is a concern.
2002-10-03 11:14:00 +00:00
ru
48afd8f904
HTTP authentication got broken in rev. 1.49.
2002-10-03 10:42:19 +00:00
tjr
915a8cf342
towlower() appeared twice in the synopsis; one of the occurrences should
...
have been towupper(). Add towupper() to the Name section while I'm at it.
Obtained from: NetBSD (junyoung)
2002-10-03 10:40:01 +00:00
tjr
f18ee8bb40
Add an Examples section with an example of how to use the functions.
2002-10-03 08:49:29 +00:00
alfred
eba16f8d01
Static'ify a variable.
...
Submitted by: Matt Emmerton <matt@gsicomp.on.ca>
2002-10-03 06:44:01 +00:00
mike
00edc47a87
Add missing const qualifier in tfind().
2002-10-03 06:33:33 +00:00
mike
607bcfa63a
Fix various style(9) bugs:
...
o Source ID's in wrong location.
o Space used, instead of tab, after typedef.
o Unaligned function prototype for twalk().
Other changes:
o Add missing const qualifier in tfind().
o Add comment about missing functions.
2002-10-03 06:31:16 +00:00
mike
097ed50cd5
Remove namespace pollution by not including <sys/types.h> and
...
<time.h>, instead provide a local typedef for pid_t and forward
declare struct timespec.
2002-10-03 06:27:50 +00:00
anholt
fb0cbb0771
Correct an indentation.
...
Noticed by: phk
2002-10-03 06:10:54 +00:00
truckman
8ad27d9922
hashinit() calls MALLOC(), so release the filedesc lock in knote_attach()
...
before calling hashinit() and relock afterwards, taking care to see that
we don't lose a race.
2002-10-03 06:03:26 +00:00
jmallett
cea0ea5b91
In lieu of a good way to prevent every possible looping in make(1), stop
...
there from being more than 500 processes forked by make(1), to prevent a
forkbomb from happening, in a dumb and mechanical way.
PR: alane
Submitted by: bin/42772
MFC after: 2 weeks
2002-10-03 04:32:47 +00:00