Commit Graph

18730 Commits

Author SHA1 Message Date
Mike Pritchard 8c9c6676cf Add a couple of additional xrefs. 1997-01-11 19:57:27 +00:00
Mike Pritchard 3414ffc21e Minor mdoc cleanup. 1997-01-11 19:47:07 +00:00
Mike Pritchard 2a1479378e Add a blurb describing the fact that ls will print the
year in place of the hour/minute fields if the time is
more than 6 months in the past or future.

Also some minor mdoc cleanup.
1997-01-11 19:24:22 +00:00
Mike Pritchard f173abd010 Make ls include the year when displaying times that are more than
6 months into the future.  Closes PR# 1657.

Submitted by:	Sakari Jalowaara <sja.home.tekla.fi>
1997-01-11 19:15:53 +00:00
Nate Williams b1e21161bf Whoops, typo. 1997-01-11 18:32:27 +00:00
Nate Williams cc6da87199 Update the PCIC controller's imask with individual slot IRQ's.
Assuming that the intr_mask[] was updated by changing the maskptrs (the
existing update_intr_masks() function will not work) this code was
written so the PCIC controller insertion/removal events will not
interrupt the card IRQ handler events.

Some possible scenarios:
+ Card is removed during IRQ handler:

  - PCIC card handler is allowed to interrupt
  - card removal event is called, removing the driver and data structures
  * card interrupt handler continues w/out driver, data structures, and hardware

OR (the code just committed)

  * card IRQ handler has no hardware to read/write to, but has code and
    data to run on (XXX- Assume it completes and doesn't spin forever)
  - PCIC card handler unloads the card driver

The current situation at least leaves the card interrupt handlers the
drivers and data structures to work with although the hardware can't be
guaranteed.

Reviewed by:	bde
1997-01-11 18:23:20 +00:00
Nate Williams e4410844b0 Removed magic # 16 and replaced with ICU_LEN. 1997-01-11 17:59:38 +00:00
Nate Williams 8b8f892696 Now that all of the IRQ's should be allocated by the time this
pccard_configure() is called (except for LKm's :( ), build a list of
unassigned interrupts for the PCCARD code to use.

Reviewed by:	bde
1997-01-11 17:54:57 +00:00
Nate Williams 796c9a39d8 Moved pccard_configure() to the end of the configure() list. This
avoids problems with the PCIC controller grabbing an interrupt that
another card needs.

Closes PR: kernel/2405

Reviewed by:	bde
1997-01-11 17:41:36 +00:00
Bill Paul 341460c3b5 Correct two bugs:
- If a child receives a SIGTERM, it will call the terminate() function
  and end up doing the shutdown procedurs that should really only be
  done by the parent. Set the SIGTERM behavior back to SIG_DLT in the
  child after fork()ing.

- If the parent fails to read data back from the child because the
  child has exited, it will call rpc_received() with bogus tdata that
  can cause the parent to SEGV. Make handle_children() detect this
  condition correctly and handle it sanely.

*sigh* Another 2.2 candidate.
1997-01-11 17:16:18 +00:00
David Nugent 4387f78ffa Added 'xuser' class entry point for X users (who need more resources).
Increased default procs/file handles so that man will work in more
situations. Other suggestions welcome, btw.
1997-01-11 16:08:53 +00:00
Joshua Peck Macdonald 9abd8172b6 Add -DNOINFO to MK_FLAGS, that's okay right? The comment says
MK_FLAGS contains -DNOMAN and -DNOPROFILE for speed, so I assume
NOINFO is okay as well.

Add gnu/usr.bin/texinfo to build-tools so everything does the right
thing.
1997-01-11 10:53:01 +00:00
Joshua Peck Macdonald 38a1b9404b In an attempt to make the new info rules bootstrap themselves, make
the rules conditional on NOINFO not being defined, just like NOMAN.
1997-01-11 10:51:36 +00:00
Peter Wemm d5c3a37026 This is purely a bandaid to lower the risk of running out of slots
for the local interfaces.  It's not uncommon to have >32 interfaces
these days.  This is a temporary patch until it's fixed to use sysctl
or whatever.
1997-01-11 09:21:29 +00:00
KATO Takenori 97fcf1ddb2 Fix typo. 1997-01-11 08:59:45 +00:00
John Dyson d4a272db61 Slightly correct the code that moves pages from the active to the
inactive queue.  This is only a minor performance improvement, but will
not affect perf on machines that don't have ref bits.
1997-01-11 07:22:24 +00:00
John Dyson 9b5a5d81be Prepare better for multi-platform by eliminating another required
pmap routine (pmap_is_referenced.)  Upper level recoded to use
pmap_ts_referenced.
1997-01-11 07:19:02 +00:00
David Nugent 6acc486b3f Makes login login_cap-savvy.
Note that LOGIN_CAP_AUTH code (login authentication) is not (yet) enabled
and requires /usr/libexec/login_<style> authentication program support to
be added at a later date. The Makefile contains a macro LC_AUTH to turn
it on and prevent unnecessarily linking against skey/krb libs and the
addition of klogin.c module.

All other aspects of login_cap support are fully functional.
1997-01-11 07:16:35 +00:00
KATO Takenori 079e6754a1 Change initialize routine of Cyrix 5x86 CPU.
- Turn off BTB (Branch Target Buffer) because the BTB makes system
  unstable on some machines. The BTB feature can be enabled if
  "options BTB_EN" is added in kernel a configuration file.
- Change comment.
- Reorder `orb XX,%al's.
- Reset NMI F/F (mask NMI) before setting registers, and set it after
  setting them. Normally, this change has no effect.
1997-01-11 07:14:35 +00:00
David Nugent 0bc1c71450 Adds a template/example login.conf, login class capabilities database. 1997-01-11 06:47:56 +00:00
Joshua Peck Macdonald c83a75eb30 Changes to make ld demangle C++ symbol names before printing
error messages containing them.

Reviewed by:	Peter Wemm
1997-01-11 05:51:03 +00:00
Joshua Peck Macdonald 63c9b0f9ee Same. 1997-01-11 05:45:40 +00:00
Joshua Peck Macdonald 81705f9116 This texinfo documentation isn't really enough texinfo-ized
to construct an info file from, as documented at the top.  There
are no nodes, so I'm commenting out the INFO= list.
1997-01-11 05:43:40 +00:00
Joshua Peck Macdonald f95f08edb3 Still going. 1997-01-11 05:41:39 +00:00
Joshua Peck Macdonald 00e161baed Same. This wasn't installed before either. 1997-01-11 04:07:35 +00:00
Joshua Peck Macdonald 0c6dc986d0 Same. 1997-01-11 04:03:05 +00:00
Joshua Peck Macdonald d49ce3c9e1 Same. This wasn't even in the old dir file. 1997-01-11 03:58:39 +00:00
Joshua Peck Macdonald 11a399494c Same. 1997-01-11 03:52:45 +00:00
Joshua Peck Macdonald 9f716d6403 Same deal. 1997-01-11 03:50:21 +00:00
Joshua Peck Macdonald ae0f6792aa Same deal. 1997-01-11 03:41:14 +00:00
Joshua Peck Macdonald 976aabbe02 Same thing. 1997-01-11 03:32:01 +00:00
Joshua Peck Macdonald c99a979d99 Forgot a TAB. 1997-01-11 03:31:08 +00:00
Joshua Peck Macdonald b0321ca170 Same thing. 1997-01-11 03:26:53 +00:00
Joshua Peck Macdonald a4ec48ef58 Getting tired of writing same thing. 1997-01-11 03:24:24 +00:00
Joshua Peck Macdonald 97d7a9e33f Added section and entry annotations. 1997-01-11 03:19:32 +00:00
Joshua Peck Macdonald 20307d5eea Add missing info section name. 1997-01-11 03:11:35 +00:00
Joshua Peck Macdonald 0e4dbbc03c Add the missing annotations. 1997-01-11 03:07:52 +00:00
Joshua Peck Macdonald dfc62077a2 Add the missing annotations. 1997-01-11 02:59:52 +00:00
Joshua Peck Macdonald a27d0c0f96 This file has the info annotation, except its annotated name
is different from its filename for some reason.
1997-01-11 02:56:24 +00:00
Joshua Peck Macdonald d6a2d2570f Add info to SUBDIRS 1997-01-11 02:46:51 +00:00
Joshua Peck Macdonald 527aaab97e Makefile and empty dir template. 1997-01-11 02:44:34 +00:00
Joshua Peck Macdonald 0d7f401441 Change the installation rules. It now copies an empty dir file
into the DESTDIR in the beforeinstall rule in src/share/info/Makefile.
Then each info file that gets installed into the dir file using
install-info.

It has struck me that there's going to be a problem bootstrapping
this change, since parts of install will fail until install-info
is installed.  Maybe someone who knows best how to deal with this can
fix it.
1997-01-11 02:39:37 +00:00
Joshua Peck Macdonald c60f669c14 Clearing out the old stuff, its all in contrib now. 1997-01-11 02:32:23 +00:00
Joshua Peck Macdonald aeee973296 Correct a bogus strerror declaration and make install-info
intelligent enough to take default section and entry names
for the purpose of being able to use it on old texinfo files
in the source tree.  This involved very minor modifications and
the new options --defsection and --defentry which behave just like
--section and --entry but ignore their argument if the info file
is annotated with the information.  This change should only be
neccesary as long as there are old-style texinfo source in the tree.
1997-01-11 02:27:56 +00:00
Joshua Peck Macdonald 5212bbee8a Remove a non-posix terminal flag OCRNL from terminal.c, add the
two auto-generated files doc.c and funs.h.
1997-01-11 02:23:39 +00:00
Joshua Peck Macdonald 7df7ad2abd This commit was generated by cvs2svn to compensate for changes in r21495,
which included commits to RCS files with non-trunk default branches.
1997-01-11 02:12:38 +00:00
Joshua Peck Macdonald 253c2b00b7 This is unmodified GNU texinfo-3.9 source. I'll be commiting a few
patches in a bit.

-josh
1997-01-11 02:12:38 +00:00
Wolfram Schneider 7ed8349293 if !(command) -> if ! (command)
the ksh and I guess some other shells want a space
between '!' and the next command. This problem exist since rev 1.207
1997-01-10 21:02:27 +00:00
KATO Takenori af4342c037 Staticize the functions rtc_inb, rtc_outb, rtc_serialcombit, and
rtc_serialcom.  These functions are only used by PC98.
1997-01-10 17:11:09 +00:00
Poul-Henning Kamp ceb85496fa kern/2433: Multiple AHA1542 scsi controllers don't work
Reviewed by:	phk
Submitted by:	Virgil Champlin <champlin@pa.dec.com>
1997-01-10 08:45:55 +00:00