Robert Drehmel
b78411b153
Include <stdlib.h> to have abort() and exit() declared.
2002-08-15 11:58:24 +00:00
Robert Drehmel
f8418db73e
- 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 Drehmel
71a00a449f
- 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 Drehmel
5618f72405
- 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
Ruslan Ermilov
0d533e437d
Document the effect of contrib/gcc/c-lex.c,v 1.2 commit.
2002-08-15 08:51:24 +00:00
Ruslan Ermilov
26e1070b8b
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
Ruslan Ermilov
43290b6363
mdoc(7) police: fixed indentation in synopsis.
...
Submitted by: bde
2002-08-15 08:20:07 +00:00
Warner Losh
6319263d7b
pccbb->cbb
2002-08-15 08:05:40 +00:00
Warner Losh
f5a9ae40ce
No longer needed
2002-08-15 08:04:06 +00:00
Warner Losh
6c596e8d0b
pccbb -> cbb
2002-08-15 08:02:23 +00:00
Warner Losh
b35cf6719f
Rename the pccbb device to cbb.
2002-08-15 08:01:24 +00:00
Warner Losh
6f6efa5165
Move the symbol firmware loading routines into if_wi.
...
Define some basic firmware downloading commands.
2002-08-15 07:13:17 +00:00
Alfred Perlstein
ba05755c4b
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 Burkholder
e4f5294e18
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 Burkholder
0db0a7019c
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 Burkholder
b5d2ed3047
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
Doug Barton
782ce28781
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
Mike Silbersack
f3b2d59e18
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
Scott Long
4576293d3e
Clean up comments that are no longer relevant.
2002-08-15 03:50:06 +00:00
Gordon Tetlow
eabdfedb1e
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 Tetlow
5b572aec21
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
Robert Watson
99fa64f863
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 Perlstein
b618bb96f0
return foo -> return (foo)
2002-08-15 02:10:12 +00:00
Scott Long
1703656a17
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 Drehmel
3248d0a517
- 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 Drehmel
620035ef89
- 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 Drehmel
ad90696815
- 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 Drehmel
d542f511a0
- 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
Robert Watson
912dd12ad1
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 Drehmel
840b798c83
- 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 Drehmel
33f9b60eee
- 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 Drehmel
b7dbaf7b46
-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
Juli Mallett
0054a46d1d
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
Juli Mallett
c96c380580
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
Juli Mallett
8a3e49fd52
Spell kenrel as 'kernel' for consistency with the rest of the universe.
...
Inspired by: bde
2002-08-14 17:55:11 +00:00
Ruslan Ermilov
0f90a39a29
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
Ruslan Ermilov
7a7a00ad2c
Collapsed the export list, added CD_EXTRA_BITS to it.
2002-08-14 16:50:50 +00:00
Bosko Milekic
d8aadd88cf
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
Ruslan Ermilov
c887ca5b8a
mdoc(7) police: fixed indentation in SYNOPSIS.
...
Submitted by: style(9) police (bde)
2002-08-14 16:09:31 +00:00
Jake Burkholder
ed5434f0e3
Set kernel_vm_end. Panic if we try to grow the kernel.
2002-08-14 15:05:26 +00:00
Andrey A. Chernov
3b2d61780f
Use proper #include
2002-08-14 11:59:57 +00:00
Andrey A. Chernov
02826007ca
Add #undefs to separate local buffers declaration and now dinamic libc buffers
2002-08-14 11:51:26 +00:00
Ruslan Ermilov
93df249471
mdoc(7) police: simplify.
2002-08-14 11:38:30 +00:00
Ruslan Ermilov
eaa529121a
mdoc(7) police: Forgot to bump .Dd.
2002-08-14 11:32:32 +00:00
Ruslan Ermilov
3791250688
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
Ruslan Ermilov
67cb90ecd7
Fix the usage() to match style(9).
2002-08-14 11:28:07 +00:00
Ruslan Ermilov
d3ee5eafe5
mdoc(7) police: nits.
2002-08-14 11:05:40 +00:00
Joerg Wunsch
d718f8d486
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 Stokely
13a705e1d1
Add definition for FreeBSD 4.6.2.
2002-08-14 06:32:17 +00:00
Gordon Tetlow
8987faac82
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