robert
247b8ccb6b
Include <stdlib.h> to have abort() and exit() declared.
2002-08-15 11:58:24 +00:00
robert
eef3b2f04b
- For compliance with IEEE Std 1003.1-2001, add the 'restrict'
...
qualifier to function prototypes and definitions where
appropriate using the '__restrict' macro.
- Update the manual page.
2002-08-15 10:28:52 +00:00
robert
4accb821f1
- Introduce the 'restrict' qualifier to function prototypes and
...
definitions to comply with IEEE Std 1003.1-2001.
- Update the manual pages.
2002-08-15 09:47:10 +00:00
robert
043ed1f581
- Add the 'restrict' qualifier to the function prototypes and
...
definitions of the functions that convert strings to numbers
and are defined by IEEE Std 1003-1.2001.
- Use ANSI-C function definitions for all of the functions
mentioned above plus strtouq and strtoq.
- Update the prototypes in the manual pages.
2002-08-15 09:25:04 +00:00
ru
ef527f85f2
Document the effect of contrib/gcc/c-lex.c,v 1.2 commit.
2002-08-15 08:51:24 +00:00
ru
b955fa1b2c
Merge gcc.295/cccp.c,v 1.9: don't let gcc(1) hide warnings in system headers.
...
Reviewed by: bde
Original 2.95 change was subject to:
Approved by: obrien
2002-08-15 08:45:49 +00:00
ru
735fd8f13c
mdoc(7) police: fixed indentation in synopsis.
...
Submitted by: bde
2002-08-15 08:20:07 +00:00
imp
89dd0bee0e
pccbb->cbb
2002-08-15 08:05:40 +00:00
imp
686e2aadda
No longer needed
2002-08-15 08:04:06 +00:00
imp
9e7fb94cf8
pccbb -> cbb
2002-08-15 08:02:23 +00:00
imp
640133cf9d
Rename the pccbb device to cbb.
2002-08-15 08:01:24 +00:00
imp
f2de8fd8b9
Move the symbol firmware loading routines into if_wi.
...
Define some basic firmware downloading commands.
2002-08-15 07:13:17 +00:00
alfred
209edd14cb
Add regression tests for sysvipc.
...
Submitted by: Hiten Pandya <hiten@uk.FreeBSD.org>
Obtained from: NetBSD
2002-08-15 06:34:37 +00:00
jake
3d029bfb13
Fixed 64bit big endian bugs relating to abuse of ioctl argument passing.
...
This makes truss work on sparc64.
2002-08-15 06:16:10 +00:00
jake
16ef416a94
Fix some confusion regarding traps that use mmu globals but don't really
...
have any reason to; force alternat globals instead, which is what we want.
2002-08-15 05:46:42 +00:00
jake
07153efecf
Store the number of itlb and dtlb entries separately; they may be different.
...
Find the prom node for the boot cpu earlier and store it in the per-cpu
area, so that cache_init can be called earlier.
2002-08-15 05:24:55 +00:00
dougb
bf0a4d7027
I was too conservative with my header changes, so restore some sanity
...
via bde. atatat@NetBSD.org made basically the same change in their
version, so bring over their CVS Id which I neglected last time.
Obtained from: bde, Andrew Brown <atatat@NetBSD.org>
2002-08-15 04:58:46 +00:00
silby
e4af9029cc
Improve handling of TX errors. Early reports indicate that this
...
elimiates the driver lockup problem reported by many.
Concepts used were taken from Via's if_fet driver. Verification
and implementation were done by Thomas Nystrom.
Submitted by: Thomas Nystrom <thn@saeab.se>
MFC after: 3 days
2002-08-15 04:04:53 +00:00
scottl
849f861756
Clean up comments that are no longer relevant.
2002-08-15 03:50:06 +00:00
gordon
1ae011b749
I missed the single_mountd_enable in rc.network.
...
Submitted by: Mike Makonnen <makonnen@pacbell.net>
2002-08-15 03:29:19 +00:00
gordon
af5c72f277
Remove an accidental double chkdepend that snuck in during the last commit.
...
Submitted by: Mike Makonnen <makonnen@pacbell.net>
2002-08-15 03:24:47 +00:00
rwatson
f77c281019
Sync to trustedbsd_mac tree: default to sigsegv rather than copy-on-write
...
during a label change resulting in an mmap removal. This is "fail stop"
behavior, which is preferred, although it offers slightly less
transparency.
Obtained from: TrustedBSD Project
Sponsored by: DARPA, NAI Labs
2002-08-15 02:28:32 +00:00
alfred
1a599018bb
return foo -> return (foo)
2002-08-15 02:10:12 +00:00
scottl
826866dc00
Factor out some ugle code that's shared by udf_readdir and udf_lookup.
...
Significantly de-obfuscate udf_lookup
Inspired By: tes@sgi.com
2002-08-15 00:43:43 +00:00
robert
4b64f84a43
- Add the 'restrict' qualifier to the function definitions and
...
public prototypes of setbuf(3) and setvbuf(3) using the
'__restrict' macro from <sys/cdefs.h> to be compliant with
IEEE Std 1003.1-2001.
- Replace the K&R with ANSI-C function definitions.
- Bring the manual page up-to-date.
2002-08-14 23:45:42 +00:00
robert
f0abd50e99
- Add the 'restrict' qualifier to the function definition of
...
strftime(3) for IEEE Std 1003.1-2001 compliance and remove
excessive usage of the 'const' qualifier that was neither
present in the prototype in the publice header, nor in the
local prototype just above the function definition.
- Replace the K&R function definition with a ANSI-C one.
- Update the prototype of strftime(3) in its manual page.
2002-08-14 23:20:48 +00:00
robert
698d5a31a4
- Add the 'restrict' qualifier to the definitions of the string
...
concatenation and copy functions using the '__restrict' macro.
This is to satisfy IEEE Std 1003-1.2001.
- Use ANSI-C function definitions.
- Add the 'restrict' keyword to the manual pages, too.
2002-08-14 22:59:22 +00:00
robert
6e77bfc7bd
- Add the C99 'restrict' qualifier using the '__restrict' macro to
...
function prototype and definition of strptime(3).
- Update the manual page.
2002-08-14 22:36:22 +00:00
rwatson
476f71cec5
Use "ugidfw.h" rather than <ugidfw.h> so that mkdep can find it.
...
Suggested by: mike
2002-08-14 22:30:07 +00:00
robert
d02311a4f8
- Add the 'restrict' qualifier to match the IEEE Std 1003.1-2001
...
prototype of the tdelete(3) function.
- Remove duplicated space.
- Use an ANSI-C function definition for tdelete(3).
- Update the manual page.
2002-08-14 21:16:41 +00:00
robert
c892b99281
- Add the 'restrict' qualifier required by IEEE Std 1003.1-2001
...
to the function definition of strxfrm(3) in form of our
'__restrict' macro.
- Use an ANSI-C function definition for strxfrm(3).
- Change the manual page accordingly.
2002-08-14 21:01:04 +00:00
robert
af770662f5
-Add the restrict required by IEEE Std 1003.1-2001 in form
...
of our __restrict macro to the prototypes and function
definitions of inet_pton and inet_ntop.
- Use ANSI-C function argument lists.
- Adjust the prototypes in the manual page.
2002-08-14 20:40:35 +00:00
jmallett
49bfd93f79
Document why the has_f00f_bug variable is initialised rather than placed into
...
the BSS (so that it can be binary-patched).
Inspired by: bde
2002-08-14 18:07:09 +00:00
jmallett
e041d3beea
When talking about c_db_sym_t, mention that it is not just like db_sym_t:
...
it's const.
Inspired by: bde
2002-08-14 17:56:47 +00:00
jmallett
5853f91082
Spell kenrel as 'kernel' for consistency with the rest of the universe.
...
Inspired by: bde
2002-08-14 17:55:11 +00:00
ru
f381d6e10a
Removed the (never-released) FreeBSD 4.6.1.
...
Inspired by: bmah's commit to www/en/releases/4.6.1R
2002-08-14 16:57:14 +00:00
ru
ccce65aa9b
Collapsed the export list, added CD_EXTRA_BITS to it.
2002-08-14 16:50:50 +00:00
bmilekic
1ea9bfcd52
Unbreak building of fstat following version 1.23 of
...
src/sys/ufs/ufs/quota.h by including mount.h before ufs/quota.h.
2002-08-14 16:34:13 +00:00
ru
63aa364919
mdoc(7) police: fixed indentation in SYNOPSIS.
...
Submitted by: style(9) police (bde)
2002-08-14 16:09:31 +00:00
jake
2d7ee32053
Set kernel_vm_end. Panic if we try to grow the kernel.
2002-08-14 15:05:26 +00:00
ache
db791732e2
Use proper #include
2002-08-14 11:59:57 +00:00
ache
b87a80a757
Add #undefs to separate local buffers declaration and now dinamic libc buffers
2002-08-14 11:51:26 +00:00
ru
aed6bc195b
mdoc(7) police: simplify.
2002-08-14 11:38:30 +00:00
ru
96d2524b4e
mdoc(7) police: Forgot to bump .Dd.
2002-08-14 11:32:32 +00:00
ru
a573fc7181
mdoc(7) police:
...
Added -F and -W options to the SYNOPSIS.
Fixed options DESCRIPTION to match style(9).
Document the default for -F.
2002-08-14 11:31:37 +00:00
ru
72b565cff0
Fix the usage() to match style(9).
2002-08-14 11:28:07 +00:00
ru
d5054e6434
mdoc(7) police: nits.
2002-08-14 11:05:40 +00:00
joerg
72c1874321
Implement the DIOCGSECTORSIZE and DIOCGMEDIASIZE ioctls, and rename
...
the DIOCGDINFO ioctl into DIOCGDVIRGIN. This allows the newfs(8) to
work on vinum volumes without the now removed -v option.
Approved by: grog
2002-08-14 09:28:19 +00:00
murray
8c01a595e7
Add definition for FreeBSD 4.6.2.
2002-08-14 06:32:17 +00:00
gordon
7776e3081f
Don't export variables from /etc/rc when doing rc_ng because the scripts
...
are sourced in a subshell.
Submitted by: Mike Makonnen <makonnen@pacbell.net>
2002-08-14 05:58:44 +00:00