Commit Graph

89351 Commits

Author SHA1 Message Date
gmcgarry
1e6e7a59a1 Add rtc(4) 2001-12-08 05:50:52 +00:00
gmcgarry
bb2d399d73 Add rtc(4) page. 2001-12-08 05:47:56 +00:00
gmcgarry
aa2e1d506f This page isn't pmax-specific. Nuke commented-out sections about... wscons! 2001-12-08 05:41:04 +00:00
gmcgarry
0c1acbd94d Provide a SYNOPSIS section now the hil(4) has a proper attachment.
Also nuke HISTORY.
2001-12-08 05:36:58 +00:00
soren
a5812755ac Pass sbus addresses to sbus_bus_map(), not sbus_bus_addr()'d ones. 2001-12-08 05:36:31 +00:00
gmcgarry
d28c8e0f2a Add .Os 2001-12-08 04:52:01 +00:00
gmcgarry
0d3b140525 Update list to reflect reality 2001-12-08 04:26:10 +00:00
gmcgarry
b820c21e65 Update for structural interrupt changes. No functional change. 2001-12-08 04:22:46 +00:00
gmcgarry
8dd1938ed2 softintr(9) interface for hp300 2001-12-08 04:12:37 +00:00
lukem
290cc55a28 - Implement
uint32_t namei_hash(const char *p, const char **ep)
  which determines the equivalent MI hash32_str() hash for p.
  If *ep != NULL, calculate the hash to the character before ep.
  If *ep == NULL, calculate the has to the first / or NUL found, and
  point *ep to that location.
- Use namei_hash() to calculate cn_hash in lookup() and relookup().
  Hash distribution goes from 35-40% to 55-70%, with similar profiled
  time spent in cache_lookup() and cache_enter() on my P3-600.
- Use namei_hash() to calculate cn_hash in nfs_readdirplusrpc(),
  insetad of homegrown code (that differed from that in lookup() !)
  namei_hash() has better spread and is faster than previous code
  (which used a non-constant multiplication).
2001-12-08 04:09:59 +00:00
enami
df8cfd38a2 Test ".." correctly when creating reverse cache entry. 2001-12-08 04:09:56 +00:00
gmcgarry
9a9a6e8ad4 softintr(9) interface for hp300 2001-12-08 04:09:18 +00:00
gmcgarry
1ef513e6a8 Remove placeholder for event counter; it's done elsewhere 2001-12-08 04:04:49 +00:00
gmcgarry
544aceff4c - shift event counters to intr.c
- use new event counters
- align comments
2001-12-08 04:01:48 +00:00
gmcgarry
6b8f8f10c6 - rework data structures to align with generic soft interrupts interface
- shift event counters from locore
2001-12-08 04:00:22 +00:00
gmcgarry
52c6bcd104 bcopy -> memcpy
bzero -> memset
bcmp -> memcmp
2001-12-08 03:55:22 +00:00
gmcgarry
aee7bee1a7 bcopy -> memcpy
bzero -> memset
bcmp -> memcmp
2001-12-08 03:34:38 +00:00
bjh21
979ce3fa95 Explicitly declare ofw_device_register(), since it's not in any header file.
Yes, this is nasty, but it's not as if this port has long to live, does it?
2001-12-08 01:22:45 +00:00
bjh21
4c64633edc Remove more acorn32 leftovers. 2001-12-08 01:16:53 +00:00
ross
a15e9b5f48 tweak previous for lp64 so sysinst will compile on alpha 2001-12-08 01:10:37 +00:00
minoura
3e9a826813 Add -p option to suppress creating the partition table. 2001-12-08 00:51:03 +00:00
thorpej
165f442f86 Update for "coredumps now exec-format/emulation specific". 2001-12-08 00:37:07 +00:00
thorpej
205c159f0e Make the coredump routine exec-format/emulation specific. Split
out traditional NetBSD coredump routines into core_netbsd.c and
netbsd32_core.c (for COMPAT_NETBSD32).
2001-12-08 00:35:25 +00:00
bjh21
c59d1f8772 Add sd0 and sd1 to "all". 2001-12-08 00:35:24 +00:00
enami
689d72c0ba Use memcpy instead of memmove since no overlaps here (copy from somewhere
outside of the funciton to our stack).
2001-12-08 00:30:59 +00:00
scw
61551fba00 Fix a `parameter shadows global variable' warning spotted by new-toolchain. 2001-12-07 23:12:33 +00:00
chris
6bcb608ef3 Reintroduce these header files so that cats kernels can build. Fallout from Jason reverting the includes stuff. 2001-12-07 23:09:32 +00:00
scw
56e14dc08b Add a fetch_kcore_registers() function.
Pasted from our m68k's gdb.old source.

Fixes an m68k new-toolchain build problem initially reported by
Americ Vincent on tech-toolchain.
2001-12-07 22:12:29 +00:00
matt
ee7afa77b2 Fix sense of if to grab address from alternation if srom is not in isv
format on Davicom chips.  Add sparc specific case in this case to call
myetheraddr if oui is all 0s (for Netra X1).
2001-12-07 21:13:58 +00:00
wiz
ed5ba510c2 One '\' too many. 2001-12-07 19:50:20 +00:00
wiz
a3de79a4f7 Fn argument doesn't need (), add space between macro name and argument. 2001-12-07 19:18:14 +00:00
wiz
6f171e404b Misc formatting fixes. 2001-12-07 19:14:08 +00:00
wiz
7992385439 Fix Bl argument, drop an unnecessary .Pp and some unnecessary "the"s. 2001-12-07 19:02:30 +00:00
wiz
b8872cd2f0 Use Fd in SYNOPSIS. 2001-12-07 18:58:33 +00:00
wiz
d46bac173c Fix Bd arguments, sort sections, use Fd in SYNOPSIS. 2001-12-07 18:58:06 +00:00
wiz
1e9ce4fb48 Fix Bd arguments, unquote Sh argument, sort sections. 2001-12-07 18:56:03 +00:00
wiz
f79e9ad9e5 Massively improve markup, fix a sentence and two xrefs. 2001-12-07 18:49:30 +00:00
bjh21
41a2a8aac2 WARNS=2 2001-12-07 15:14:29 +00:00
bjh21
ba649ef7db Mention that eight-byte integers work. 2001-12-07 14:46:24 +00:00
fredette
178a439b58 Regen. 2001-12-07 14:21:18 +00:00
bjh21
a1aaa4713c POSIX.2 doesn't specify hexdump, so we can't claim our hexdump is compatible
with it.
2001-12-07 13:45:07 +00:00
bjh21
84f98450e5 Enable support for printing 8-byte integers. For some reason, most of the
code for this was present, but disabled.
This is required for POSIX compliance on platforms with 8-byte longs.
2001-12-07 13:37:39 +00:00
bjh21
20d6672fda Change L2CR_CONFIG from defflag to defparam, since it takes an argument. 2001-12-07 12:58:43 +00:00
wiz
1f01816d38 Avoid Po/Pq. 2001-12-07 12:36:40 +00:00
wiz
69486f2d3a Slight grammar improvement. 2001-12-07 12:36:11 +00:00
wiz
881a6c7de6 Markup getwc in one place. 2001-12-07 12:35:54 +00:00
wiz
aa5abf3731 Grammar improvements, some additional markup and a typo fix. 2001-12-07 12:35:13 +00:00
yamt
fa787c7eba g/c #if 0. 2001-12-07 12:18:53 +00:00
blymn
531ada40fc Changed deprecated curses function to the new equivalent. 2001-12-07 12:10:09 +00:00
yamt
a510b02e77 add files forgotten in my previous commit. 2001-12-07 12:02:07 +00:00