]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/log
FreeBSD/FreeBSD.git
22 years agoForward declare struct thread.
jake [Mon, 20 May 2002 16:11:38 +0000 (16:11 +0000)]
Forward declare struct thread.

22 years agoDe-inline the tlb demap functions. These were so big that gcc3.1 refused
jake [Mon, 20 May 2002 16:10:17 +0000 (16:10 +0000)]
De-inline the tlb demap functions.  These were so big that gcc3.1 refused
to inline them anyway.  ;)

22 years agoTry to guess prefixlen for guessable cases.
ume [Mon, 20 May 2002 15:01:19 +0000 (15:01 +0000)]
Try to guess prefixlen for guessable cases.
- /0 if matches ::/128
- /64 if matches 2000::/3 and lowermost 64 bit is all 0
- /128 if matches 2000::/3 and lowermost 64 bit is non-zero 0

Obtained from: KAME/NetBSD

22 years agoChange two vput() that should have been vrele().
mux [Mon, 20 May 2002 14:59:43 +0000 (14:59 +0000)]
Change two vput() that should have been vrele().

Submitted by: iedowse

22 years agoBootstrap elf2aout(1) for sparc64; used to build sys/boot/sparc64/boot1.
ru [Mon, 20 May 2002 14:42:48 +0000 (14:42 +0000)]
Bootstrap elf2aout(1) for sparc64; used to build sys/boot/sparc64/boot1.

22 years agoReconnect 21.troff to the build.
ru [Mon, 20 May 2002 13:54:45 +0000 (13:54 +0000)]
Reconnect 21.troff to the build.

22 years agoBuild this document in a standard way.
ru [Mon, 20 May 2002 13:53:22 +0000 (13:53 +0000)]
Build this document in a standard way.

22 years agoFixed roffing.
ru [Mon, 20 May 2002 13:52:35 +0000 (13:52 +0000)]
Fixed roffing.

22 years agoUse more common phrasing for the "request reviews" text. Add UFS EAs,
rwatson [Mon, 20 May 2002 13:08:32 +0000 (13:08 +0000)]
Use more common phrasing for the "request reviews" text.  Add UFS EAs,
POSIX.1e ACLs to the list of things I like to review changes for.

22 years agoAdd a note that NO_WERROR is a good idea for the time being due to the
rwatson [Mon, 20 May 2002 13:06:24 +0000 (13:06 +0000)]
Add a note that NO_WERROR is a good idea for the time being due to the
compiler upgrade.  People still seem to be tripping over this.

22 years agoRegen after changing Device ID string for DaisyTech devices.
sobomax [Mon, 20 May 2002 12:02:54 +0000 (12:02 +0000)]
Regen after changing Device ID string for DaisyTech devices.

MFC after: 1 week

22 years agoChange Device ID string for DaisyTech devices.
sobomax [Mon, 20 May 2002 12:01:58 +0000 (12:01 +0000)]
Change Device ID string for DaisyTech devices.

Submitted by: Olexander Kunytsa <kunia@istc.kiev.ua>
MFC after: 1 week

22 years agoDon't grab Giant around malloc(9) and free(9).
phk [Mon, 20 May 2002 10:03:15 +0000 (10:03 +0000)]
Don't grab Giant around malloc(9) and free(9).
Don't grab Giant around wakeup(9).
Don't print verbose messages about each device found in geom_dev.
Various cleanups.

Sponsored by: DARPA & NAI Labs.

22 years agoMFS: silence compiler warnings.
sobomax [Mon, 20 May 2002 09:55:41 +0000 (09:55 +0000)]
MFS: silence compiler warnings.

22 years agoKill the stray #include line.
ru [Mon, 20 May 2002 08:05:58 +0000 (08:05 +0000)]
Kill the stray #include line.

22 years agos/u_int/u_int32_t/
ru [Mon, 20 May 2002 07:56:40 +0000 (07:56 +0000)]
s/u_int/u_int32_t/

22 years agoAdd the SUSv3 -L and -P options to the cd and pwd builtin utilities. `Logical'
tjr [Mon, 20 May 2002 07:54:39 +0000 (07:54 +0000)]
Add the SUSv3 -L and -P options to the cd and pwd builtin utilities. `Logical'
handling of .. is now the default.

22 years agoFix IP address typo.
dd [Mon, 20 May 2002 07:29:25 +0000 (07:29 +0000)]
Fix IP address typo.

PR: 38313
Submitted by: Jeff Ito <jeffi@rcn.com>

22 years agoCheck that src/games exists in a less error-prone way.
ru [Mon, 20 May 2002 07:20:20 +0000 (07:20 +0000)]
Check that src/games exists in a less error-prone way.

PR: misc/38292

22 years agoMark a warning as such. Without this, it isn't obvious whether
dd [Mon, 20 May 2002 07:17:22 +0000 (07:17 +0000)]
Mark a warning as such.  Without this, it isn't obvious whether
killall stopped after failing to kill one process or whether it kept
going.

22 years agoMFS: Switch to KDE 3 for the CDROMs.
will [Mon, 20 May 2002 06:23:35 +0000 (06:23 +0000)]
MFS: Switch to KDE 3 for the CDROMs.

22 years agoFlesh-out ptrace support. This obviously needs more work.
marcel [Mon, 20 May 2002 05:41:20 +0000 (05:41 +0000)]
Flesh-out ptrace support. This obviously needs more work.

22 years agoLock down a socket, milestone 1.
tanimura [Mon, 20 May 2002 05:41:09 +0000 (05:41 +0000)]
Lock down a socket, milestone 1.

o Add a mutex (sb_mtx) to struct sockbuf. This protects the data in a
  socket buffer. The mutex in the receive buffer also protects the data
  in struct socket.

o Determine the lock strategy for each members in struct socket.

o Lock down the following members:

  - so_count
  - so_options
  - so_linger
  - so_state

o Remove *_locked() socket APIs.  Make the following socket APIs
  touching the members above now require a locked socket:

 - sodisconnect()
 - soisconnected()
 - soisconnecting()
 - soisdisconnected()
 - soisdisconnecting()
 - sofree()
 - soref()
 - sorele()
 - sorwakeup()
 - sotryfree()
 - sowakeup()
 - sowwakeup()

Reviewed by: alfred

22 years agoExplictly set kerberos_stash to NO instead of blank. While we are at it,
gordon [Mon, 20 May 2002 05:26:44 +0000 (05:26 +0000)]
Explictly set kerberos_stash to NO instead of blank. While we are at it,
fix a comment that suggested setting ipv6_ipv4mapping to blank. This
will aid in merging with rcng which requires all veriables to be
explicitly set.

Submitted by: Mike Makonnen
MFC after: 1 week

22 years agoOff-by-128 error in the cuam* device node numbers.
rwatson [Mon, 20 May 2002 05:12:56 +0000 (05:12 +0000)]
Off-by-128 error in the cuam* device node numbers.

22 years agoBump the rc driver a little bit closer to the 21st century: use
rwatson [Mon, 20 May 2002 05:04:41 +0000 (05:04 +0000)]
Bump the rc driver a little bit closer to the 21st century: use
make_dev() to create device nodes for each of the serial port channels
(ttym%d and cuam%d respectively, as borrowed from MAKEDEV).  This allows
the rc driver to work in 5.0.  I've tested it with only one card, but
will try sticking in a second card tomorrow and see what happens.

22 years agoRemove 21.troff from the build, it is broken.
silby [Mon, 20 May 2002 01:15:37 +0000 (01:15 +0000)]
Remove 21.troff from the build, it is broken.

22 years agoUnbreak world.
grog [Mon, 20 May 2002 00:47:03 +0000 (00:47 +0000)]
Unbreak world.

Obtained from: mark
Pointy hat to: grog

Change msU macros to mU.

This is only a partial solution; the whole issue of building the
documentation needs to be revisited.

22 years agoRemove subdirectories 3, 4, and 17 from the build; they do not build
silby [Mon, 20 May 2002 00:06:02 +0000 (00:06 +0000)]
Remove subdirectories 3, 4, and 17 from the build; they do not build
properly at this time.

22 years agoMD ficl files for sparc64.
jake [Sun, 19 May 2002 23:20:56 +0000 (23:20 +0000)]
MD ficl files for sparc64.

22 years agoFix a kernel page fault when accessing user memory. We were
marcel [Sun, 19 May 2002 22:28:57 +0000 (22:28 +0000)]
Fix a kernel page fault when accessing user memory. We were
combining too much conditions and as such ended up with the
kernel map instead of the corresponding process map. While
here, remove code to allow access to the stackgap and restyle
slightly to improve readability.

This fix specifically fixes the procfs failure we're having
when reading the process map (cat /proc/curproc/map)

22 years agoAdd a Quirk entry for the USB SimpleTech UCF-100 compact flash reader.
dillon [Sun, 19 May 2002 21:59:28 +0000 (21:59 +0000)]
Add a Quirk entry for the USB SimpleTech UCF-100 compact flash reader.
Note that even with the quirk entry the reader typically only works if
the USB device is recognized by UHCI instead of the generic OHCI driver.

22 years agoFix a late-night buglet in MLINKS ordering.
jmallett [Sun, 19 May 2002 20:39:42 +0000 (20:39 +0000)]
Fix a late-night buglet in MLINKS ordering.

Submitted by: Szilveszter Adam <sziszi@bsd.hu>

22 years agoIt's time to build modules by default.
marcel [Sun, 19 May 2002 20:25:11 +0000 (20:25 +0000)]
It's time to build modules by default.

22 years agoSimplify IA64_CMPXCHG to avoid having braced-groups in expressions.
marcel [Sun, 19 May 2002 20:19:07 +0000 (20:19 +0000)]
Simplify IA64_CMPXCHG to avoid having braced-groups in expressions.
As a minor positive side-effect, code at -O0 is more optimal. As a
minor negative side-effect, certain boundary cases yield no better
code than non-boundary cases. For example, atomic_set_acq_32(p, 0)
does a useless logical OR with value 0. This was previously elimina-
ted as part of if/while optimizations. Non-boundary cases yield
identical code at -O1 and -O2.

22 years agoo Fix race condition caused by doing ptrace() for permission
marcel [Sun, 19 May 2002 19:35:36 +0000 (19:35 +0000)]
o  Fix race condition caused by doing ptrace() for permission
   checking, followed by a lookup of the process. Do not call
   ptrace() for permission checking, but do it inline.
   Spotted by: rwatson

o  While here, copy-in arguments before we lock. This fixes
   a possible permanent lock.

Reviewed by: rwatson

22 years agoTurn nfsiod into a vfs loader and sysctl wrapper that controls the number
peter [Sun, 19 May 2002 19:21:40 +0000 (19:21 +0000)]
Turn nfsiod into a vfs loader and sysctl wrapper that controls the number
of nfsiod kernel threads being run.

22 years agoGeneralize a bit: we don't need separate functions to find the i386 and
phk [Sun, 19 May 2002 19:00:25 +0000 (19:00 +0000)]
Generalize a bit: we don't need separate functions to find the i386 and
alpha disklabels, just one function which is told where to look.

Sponsored by: DARPA & NAI Labs.

22 years agoInclude needed #include for regression tests.
phk [Sun, 19 May 2002 18:59:39 +0000 (18:59 +0000)]
Include needed #include for regression tests.

Sponsored by: DARPA & NAI Labs.

22 years agoCatch up with recent events.
phk [Sun, 19 May 2002 18:57:03 +0000 (18:57 +0000)]
Catch up with recent events.

Sponsored by: DARPA & NAI Labs.

22 years agoThis is only WARNS=0 clean now.
obrien [Sun, 19 May 2002 18:25:41 +0000 (18:25 +0000)]
This is only WARNS=0 clean now.

22 years agoTweak the WARNS levels a tad.
obrien [Sun, 19 May 2002 18:24:00 +0000 (18:24 +0000)]
Tweak the WARNS levels a tad.

22 years agoRemove a small, annoying, nit I ran in to editing this file, a lone tab
jmallett [Sun, 19 May 2002 17:50:23 +0000 (17:50 +0000)]
Remove a small, annoying, nit I ran in to editing this file, a lone tab
on a line by itself.

22 years agoTerminate ACPI subsystem on reboot.
iwasaki [Sun, 19 May 2002 15:12:40 +0000 (15:12 +0000)]
Terminate ACPI subsystem on reboot.
Some machines stuck on reboot if ACPI sleep/wakeup was executed.

22 years agoMFi386: revision 1.400.
nyan [Sun, 19 May 2002 13:20:05 +0000 (13:20 +0000)]
MFi386: revision 1.400.

22 years agoRemove unneeded entries.
nyan [Sun, 19 May 2002 13:18:10 +0000 (13:18 +0000)]
Remove unneeded entries.

22 years agoSynch usage() and manpage for b64encode/b64decode.
jmallett [Sun, 19 May 2002 11:22:54 +0000 (11:22 +0000)]
Synch usage() and manpage for b64encode/b64decode.

Make uudecode's usage more like that of other programs.

22 years agoAdd b64decode & b64encode as synonyms for uudecode and uuencode -m,
jmallett [Sun, 19 May 2002 11:17:17 +0000 (11:17 +0000)]
Add b64decode & b64encode as synonyms for uudecode and uuencode -m,
respectively, for convenience when encoding or decoding base64 files.

As requested by various users.

22 years agoUse an explicitly-sized type instead of daddr_t for on-disk block
iedowse [Sun, 19 May 2002 10:50:38 +0000 (10:50 +0000)]
Use an explicitly-sized type instead of daddr_t for on-disk block
numbers.

22 years agoFix essential typo in usage
ache [Sun, 19 May 2002 10:40:15 +0000 (10:40 +0000)]
Fix essential typo in usage

Submitted by: Cyrille Lefevre <cyrille.lefevre@laposte.net>

22 years agoImplement the -u (-o nounset) option, which gives an error message if
tjr [Sun, 19 May 2002 08:30:16 +0000 (08:30 +0000)]
Implement the -u (-o nounset) option, which gives an error message if
an unset variable is expanded.

Obtained from: NetBSD (bjh21, christos)

22 years agoMake this more FreeBSD-ish.
benno [Sun, 19 May 2002 08:16:25 +0000 (08:16 +0000)]
Make this more FreeBSD-ish.

Requested by: jhb

22 years agoInclude the following previously encumbered documentation in the build:
grog [Sun, 19 May 2002 07:49:28 +0000 (07:49 +0000)]
Include the following previously encumbered documentation in the build:

01.cacm 02.implement 03.iosys 04.uprog 06.Clang 15.yacc 16.lex 17.m4

Some of these produce a number of warnings.  I don't want to remove
them yet, because some noble soul may decide to remove the cause of
the warnings, but they won't if it doesn't bite them.

22 years agoRemove original license disclaimer.
grog [Sun, 19 May 2002 07:40:05 +0000 (07:40 +0000)]
Remove original license disclaimer.
Add Caldera license.

Approved by:    David Taylor <davidt@caldera.com>

Make buildable under FreeBSD.  This one was relatively easy, though it
still contains obscenities.

22 years agoInitial checkin: 4.4BSD version. These files need to be updated with
grog [Sun, 19 May 2002 07:35:00 +0000 (07:35 +0000)]
Initial checkin: 4.4BSD version.  These files need to be updated with
current license information and adapted to the FreeBSD build
environment before they will build.

Approved by:    David Taylor <davidt@caldera.com>

22 years agoRemove original license disclaimer.
grog [Sun, 19 May 2002 07:30:18 +0000 (07:30 +0000)]
Remove original license disclaimer.
Add Caldera license.

Approved by:    David Taylor <davidt@caldera.com>

Make buildable under FreeBSD.

This one's a real mess.  It's full of undefined macros, and in one
place deliberately causes syntax warnings.  I've decided against
taking out the undefined macros: they don't alter the format of the
output document, and maybe one day somebody will put in the macro
definitions.

Note that this file corrects a number of format errors which appear in
the O'Reilly 4.4BSD manual set.

22 years agoMake the fg and bg commands give the output required by SUSv3.
tjr [Sun, 19 May 2002 07:27:26 +0000 (07:27 +0000)]
Make the fg and bg commands give the output required by SUSv3.
fg outputs the name of the command, bg outputs the name of the command
and the job id.

22 years agoInitial checkin: 4.4BSD version. These files need to be updated with
grog [Sun, 19 May 2002 07:00:28 +0000 (07:00 +0000)]
Initial checkin: 4.4BSD version.  These files need to be updated with
current license information and adapted to the FreeBSD build
environment before they will build.

Approved by:    David Taylor <davidt@caldera.com>

22 years agoRemove original license disclaimer.
grog [Sun, 19 May 2002 06:55:13 +0000 (06:55 +0000)]
Remove original license disclaimer.
Add Caldera license.

Approved by:    David Taylor <davidt@caldera.com>

Make buildable under FreeBSD.  This was relatively complicated: the
original text used the msU macros, which are available in a number of
different kinds.  This version uses a number of mm-like macros,
including AL and BL, which just aren't available in ms, and the msU
macros I've found (even the ones in 4.4BSD) don't have them either.  I
replaced them with ms constructs, which makes it format better than
the O'Reilly document, but I wasn't able to get the table of contents
(ms doesn't have that facility).

Add a prominent comment that this is not a reference for any modern
version of C.

22 years agoWork around a code generation bug of GCC 3.1 by replacing
knu [Sun, 19 May 2002 06:53:20 +0000 (06:53 +0000)]
Work around a code generation bug of GCC 3.1 by replacing
`/2' with `>>1'.  In the context `>>1' is more appropriate
because it looks like the division is used to restore a
shifted value.

GCC GNATS PR: c/6677

This fixes a problem where wheel-up movement is taken as wheel-down
in the sysmouse protocol.

Do not assume the plain char's are signed; use `signed char' where
char's need to be signed.

Discussed on: audit
Pointed out by: bde

22 years agoMake this compile with gcc-3.1, which objects to the multi-line string.
peter [Sun, 19 May 2002 06:42:29 +0000 (06:42 +0000)]
Make this compile with gcc-3.1, which objects to the multi-line string.

22 years agoTry and solve some cases of labels at end of compound statements that gcc
peter [Sun, 19 May 2002 06:31:56 +0000 (06:31 +0000)]
Try and solve some cases of labels at end of compound statements that gcc
now objects to (as it should, it is not legal C).

22 years agoInitial checkin: 4.4BSD version. These files need to be updated with
grog [Sun, 19 May 2002 06:17:52 +0000 (06:17 +0000)]
Initial checkin: 4.4BSD version.  These files need to be updated with
current license information and adapted to the FreeBSD build
environment before they will build.

Approved by:    David Taylor <davidt@caldera.com>

22 years agoBrutally deal with __func__ being 'const char *' on gcc-3.1.
peter [Sun, 19 May 2002 06:16:47 +0000 (06:16 +0000)]
Brutally deal with __func__ being 'const char *' on gcc-3.1.

22 years agoRemove original license disclaimer.
grog [Sun, 19 May 2002 06:13:52 +0000 (06:13 +0000)]
Remove original license disclaimer.
Add Caldera license.

Approved by:    David Taylor <davidt@caldera.com>

Make buildable under FreeBSD.

22 years agoInitial checkin: 4.4BSD version. These files need to be updated with
grog [Sun, 19 May 2002 06:11:50 +0000 (06:11 +0000)]
Initial checkin: 4.4BSD version.  These files need to be updated with
current license information and adapted to the FreeBSD build
environment before they will build.

Approved by:    David Taylor <davidt@caldera.com>

22 years agoRemove original license disclaimer.
grog [Sun, 19 May 2002 06:03:06 +0000 (06:03 +0000)]
Remove original license disclaimer.
Add Caldera license.

Approved by:    David Taylor <davidt@caldera.com>

Make buildable under FreeBSD.

22 years agoImplement the -C (-o noclobber) option, which prevents existing regular
tjr [Sun, 19 May 2002 06:03:05 +0000 (06:03 +0000)]
Implement the -C (-o noclobber) option, which prevents existing regular
files from being overwritten by shell redirection.

22 years agoAdd record definition for memory checks.
marcel [Sun, 19 May 2002 05:58:24 +0000 (05:58 +0000)]
Add record definition for memory checks.

22 years agoInitial checkin: 4.4BSD version. These files need to be updated with
grog [Sun, 19 May 2002 05:57:43 +0000 (05:57 +0000)]
Initial checkin: 4.4BSD version.  These files need to be updated with
current license information and adapted to the FreeBSD build
environment before they will build.

Approved by:    David Taylor <davidt@caldera.com>

22 years agoRemove original license disclaimer.
grog [Sun, 19 May 2002 05:52:57 +0000 (05:52 +0000)]
Remove original license disclaimer.
Add Caldera license.

Approved by:    David Taylor <davidt@caldera.com>

Make roughly buildable under FreeBSD.

The results are not perfect: the original Makefile referred to a refer
file papers/Ind, which doesn't seem to have been kept, so the
references to other publications are missing.

22 years agoInitial checkin: 4.4BSD version. These files need to be updated with
grog [Sun, 19 May 2002 05:49:13 +0000 (05:49 +0000)]
Initial checkin: 4.4BSD version.  These files need to be updated with
current license information and adapted to the FreeBSD build
environment before they will build.

Approved by:    David Taylor <davidt@caldera.com>

22 years agoInitial checkin: 4.4BSD version. These files need to be updated with
grog [Sun, 19 May 2002 05:41:35 +0000 (05:41 +0000)]
Initial checkin: 4.4BSD version.  These files need to be updated with
current license information and adapted to the FreeBSD build
environment before they will build.

Approved by:    David Taylor <davidt@caldera.com>

22 years agoCatch another C++ comment
peter [Sun, 19 May 2002 05:40:22 +0000 (05:40 +0000)]
Catch another C++ comment

22 years agoRemove original license disclaimer.
grog [Sun, 19 May 2002 05:39:56 +0000 (05:39 +0000)]
Remove original license disclaimer.
Add Caldera license.

Approved by:    David Taylor <davidt@caldera.com>

Make roughly buildable under FreeBSD.

The results are not perfect: the original Makefile referred to a refer
file papers/Ind, which doesn't seem to have been kept, so the
references to other publications are missing.

22 years agoInitial checkin: 4.4BSD version. These files need to be updated with
grog [Sun, 19 May 2002 05:31:37 +0000 (05:31 +0000)]
Initial checkin: 4.4BSD version.  These files need to be updated with
current license information and adapted to the FreeBSD build
environment before they will build.

Approved by:    David Taylor <davidt@caldera.com>

22 years agoRemove original license disclaimer.
grog [Sun, 19 May 2002 05:14:02 +0000 (05:14 +0000)]
Remove original license disclaimer.
Add Caldera license.

Approved by:    David Taylor <davidt@caldera.com>

Make roughly buildable under FreeBSD.

The results are not perfect: the original Makefile referred to a refer
file papers/Ind, which doesn't seem to have been kept, so the
references to other publications are missing.  In addition, the
pagination is not correct, with the result that some .DS/.DE blocks
leave large amounts of white space empty before them.  Possibly this
could be fixed by putting the (blank) footnotes at the end.

PR:   35345
Requested by: Tony Finch <fanf@dotat.at>

22 years agoo Remove namespace pollution from param.h:
marcel [Sun, 19 May 2002 04:42:19 +0000 (04:42 +0000)]
o  Remove namespace pollution from param.h:
   -  Don't include ia64_cpu.h and cpu.h
   -  Guard definitions by  _NO_NAMESPACE_POLLUTION
   -  Move definition of KERNBASE to vmparam.h

o  Move definitions of IA64_RR_{BASE|MASK} to vmparam.h
o  Move definitions of IA64_PHYS_TO_RR{6|7} to vmparam.h

o  While here, remove some left-over Alpha references.

22 years agoInitial checkin: 4.4BSD version. These files need to be updated with
grog [Sun, 19 May 2002 04:37:39 +0000 (04:37 +0000)]
Initial checkin: 4.4BSD version.  These files need to be updated with
current license information and adapted to the FreeBSD build
environment before they will build.

Approved by:    David Taylor <davidt@caldera.com>

22 years agoInclude 21.troff and 22.trofftut in the build.
grog [Sun, 19 May 2002 04:21:29 +0000 (04:21 +0000)]
Include 21.troff and 22.trofftut in the build.

22 years agoCorrect build targets.
grog [Sun, 19 May 2002 04:16:31 +0000 (04:16 +0000)]
Correct build targets.

22 years agoo Move prototypes for restorectx and savectx from cpu.h to pcb.h,
marcel [Sun, 19 May 2002 04:14:42 +0000 (04:14 +0000)]
o  Move prototypes for restorectx and savectx from cpu.h to pcb.h,
o  Remove Alpha specific contents of struct md_coredump.

22 years ago- Do a quick style pass.
benno [Sun, 19 May 2002 04:04:12 +0000 (04:04 +0000)]
- Do a quick style pass.
- Correct the implementation of fix_unaligned to use a thread, not a proc.
- GC some #if 0'd stuff.

22 years agoAdd the PSL_VEC flag for AltiVec (no, it's not here yet =))
benno [Sun, 19 May 2002 04:03:11 +0000 (04:03 +0000)]
Add the PSL_VEC flag for AltiVec (no, it's not here yet =))

22 years agoRemove original license disclaimer.
grog [Sun, 19 May 2002 04:02:29 +0000 (04:02 +0000)]
Remove original license disclaimer.
Add Caldera license.

Approved by:    David Taylor <davidt@caldera.com>

22 years agoRemove original license disclaimer.
grog [Sun, 19 May 2002 04:01:02 +0000 (04:01 +0000)]
Remove original license disclaimer.
Add Caldera license.

Approved by:    David Taylor <davidt@caldera.com>

Add note that the documentation does not describe groff.

22 years agoRemove asr from the ia64 build. Its use of KERNBASE appears i386
marcel [Sun, 19 May 2002 03:59:06 +0000 (03:59 +0000)]
Remove asr from the ia64 build. Its use of KERNBASE appears i386
specific by way of which headers are being included (and headers
not included).

22 years agoMake the documentation build.
grog [Sun, 19 May 2002 03:57:58 +0000 (03:57 +0000)]
Make the documentation build.

This does not use the standard build macros for two reasons:

1.  There's more than one document (paper and appendix).
2.  The standard build macros need revision anyway (we shouldn't need
    to set variables to get PostScript output, it should be a separate
    target).

If anybody feels offended by this breach of style, feel free to fix
it.

22 years agoRemove option ACPI_DEBUG. It causes compile failures in the
marcel [Sun, 19 May 2002 03:50:54 +0000 (03:50 +0000)]
Remove option ACPI_DEBUG. It causes compile failures in the
function tracing bits due to __func__ being declared as const.

22 years agoCast dumpsize to long long to match printf format.
marcel [Sun, 19 May 2002 03:47:19 +0000 (03:47 +0000)]
Cast dumpsize to long long to match printf format.

22 years agoRemove CWARNFLAGS and add GCC3. We handle GCC3.x specific flags
marcel [Sun, 19 May 2002 03:41:48 +0000 (03:41 +0000)]
Remove CWARNFLAGS and add GCC3. We handle GCC3.x specific flags
centrally now that we have GCC3 in the tree. The GCC3 variable
is a helper during the switch.

22 years agoAdd Caldera license
grog [Sun, 19 May 2002 03:37:41 +0000 (03:37 +0000)]
Add Caldera license
Make buildable under FreeBSD.

Approved by:    David Taylor <davidt@caldera.com>

22 years agoInitial checkin: 4.4BSD version. These files need to be updated with
grog [Sun, 19 May 2002 03:33:24 +0000 (03:33 +0000)]
Initial checkin: 4.4BSD version.  These files need to be updated with
current license information and adapted to the FreeBSD build
environment before they will build.

Approved by:    David Taylor <davidt@caldera.com>

22 years agoInitial checkin: 4.4BSD version. These files need to be updated with
grog [Sun, 19 May 2002 03:30:02 +0000 (03:30 +0000)]
Initial checkin: 4.4BSD version.  These files need to be updated with
current license information and adapted to the FreeBSD build
environment before they will build.

22 years agoRemove comment about encumbered sources. All these sources have now
grog [Sun, 19 May 2002 03:25:02 +0000 (03:25 +0000)]
Remove comment about encumbered sources.  All these sources have now
been released under a BSD-style license by Caldera, the current owner
of the UNIX source code.

Approved by: David Taylor <davidt@caldera.com>

22 years agoAn almost mechanical sweep to replace C++ style comments with C
marcel [Sun, 19 May 2002 03:17:22 +0000 (03:17 +0000)]
An almost mechanical sweep to replace C++ style comments with C
style comments. This is not an attempt to conform to style(9).
Such has lower priority.

22 years agoAdd missing options required by SUSv3:
tjr [Sun, 19 May 2002 02:51:36 +0000 (02:51 +0000)]
Add missing options required by SUSv3:
-m List files across the page, separated by commas.
-p Print a slash after directory names
-x Same as -C but sort across the columns rather than down

Submitted by: Kyle Martin <mkm@ieee.org>

22 years agoAll signals can be sent to the inferior process when it's restarted,
marcel [Sun, 19 May 2002 01:37:43 +0000 (01:37 +0000)]
All signals can be sent to the inferior process when it's restarted,
not just the legacy ones.

PR: 33299
Submitted by: Alexander N. Kabaev <ak03@gte.com>

22 years agoHook up the new linux_ptrace implementation.
marcel [Sun, 19 May 2002 01:27:14 +0000 (01:27 +0000)]
Hook up the new linux_ptrace implementation.

PR: 33299
Submitted by: Alexander N. Kabaev <ak03@gte.com>

22 years agoRegen (linux_ptrace)
marcel [Sun, 19 May 2002 01:23:33 +0000 (01:23 +0000)]
Regen (linux_ptrace)

PR: 33299