Bruce Evans
fe20c3b61c
Say what happens to the buffer when fgets() returns NULL.
...
Fixed bogus cross references and a misordered line.
1996-03-27 17:43:38 +00:00
Bruce Evans
ba00d77a82
Print stack pointer and frame pointer in trap messages.
...
Fixed "trace/trap" message.
Reviewed by: davidg
1996-03-27 17:33:39 +00:00
Bruce Evans
8102fcda9b
Eliminated dependency on opt_sysvipc.h.
1996-03-27 17:21:57 +00:00
Bruce Evans
6d72aad8a7
Removed vestiges of dummy frame at top of tmpstk.
...
Use alignment macros where appropriate.
Cleaned up #includes.
1996-03-27 17:16:29 +00:00
Bruce Evans
6003d411e1
Fixed traceback for the following cases:
...
- legitimate null frames from idle() (traceback was aborted after a null
pointer trap)
- second instruction of normal function prologue, and last instruction of
a function (caller wasn't reported).
Reviewed by: davidg
1996-03-27 17:06:03 +00:00
Jordan K. Hubbard
ef46db020c
A few small stylistic changes. This still needs work!
1996-03-27 17:03:51 +00:00
Jordan K. Hubbard
04a12d0073
Add a tag for getting to the "who's responsible for what" section easily.
1996-03-27 13:53:20 +00:00
Jeffrey Hsu
b9258a868b
Make type compatible with Lite2.
...
Submitted by: bde
1996-03-27 07:58:57 +00:00
Joerg Wunsch
4e20deaab3
f2c's -krd does not work with f77 wrapper
...
Closes PR # gnu/1101
Submitted by: kargl@troutmask.apl.washington.edu (Steven G. Kargl)
1996-03-27 07:46:04 +00:00
Mike Pritchard
7d6b9e6c23
Updated some URL's for Digi International products so you can
...
actually follow the links, and change references from DigiBoard
to Digi International (I'm currently working for Digi, and we were
just asked to do the same thing with everything we are working
on when possible, so I figured I might as well do the same under FreeBSD).
1996-03-26 23:22:03 +00:00
Joerg Wunsch
8d6ebf3735
An incorrect path of ``dmesg'' is in the file.
...
Submitted by: masafumi@tky007.tth.expo96.ad.jp (Masafumi NAKANE)
1996-03-26 21:33:09 +00:00
Garrett Wollman
a98d68cf25
Provide for creation of /dev/perfmon.
1996-03-26 21:04:54 +00:00
Garrett Wollman
986dd77360
Add a man page for the perfmon driver.
1996-03-26 20:57:26 +00:00
Garrett Wollman
d69e850255
Add support for Pentium and Pentium Pro performance counters.
...
(This code is as yet untested; to come after man page is written.)
This also adds inlines to cpufunc.h for the RDTSC, RDMSR, WRMSR, and RDPMC
instructions. The user-mode interface is via a subdevice of mem.c;
there is also a kernel-size interface which might be used to aid
profiling.
1996-03-26 19:57:56 +00:00
Bill Fenner
e62b8c4939
Make rip_input() take the header length
...
Move ipip_input() and rsvp_input() prototypes to ip_var.h
Remove unused prototype for rip_ip_input() from ip_var.h
Remove unused variable *opts from rip_output()
1996-03-26 19:16:46 +00:00
Bill Fenner
fbc6ab006d
Add missing splx(s) in IP_MULTICAST_IF
...
Submitted by: Jim Binkley <jrb@cs.pdx.edu>
1996-03-26 18:56:51 +00:00
John Fieber
7b36c4a152
Make sure there is a linefeed at the end of generated HTML files.
1996-03-26 13:26:53 +00:00
Satoshi Asami
e73228724f
Change how mirror writes are handled, according to the discussion on the
...
mailing list.
When initiating a write, ccdbuffer() returns two "struct ccdbuf *"s
linked together by the cb_mirror field. "cb_pflags &
CCDPF_MIRROR_DONE" is set to 0 on both of them.
When a component returns to ccdiodone(), it checks if "cb_pflags &
CCDPF_MIRROR_DONE" is set or not. If not, it sets the partner's
flag and returns. If it is, it means its partner has already
returned, so it will go to the regular cleanup (which is in the
fallthrough code).
There should be no performance or functionality changes unless the
higher-level scsi driver does something with the resid value. The change
is purely aesthetical and prepares us for the parity implementation.
1996-03-26 02:29:11 +00:00
Julian Elischer
54a5291b37
Submitted by: "Marc G. Fournier" <scrappy@ki.net>
...
allows correct creation of subdirectories in devfs_add_devswf()
1996-03-25 21:56:59 +00:00
Garrett Wollman
9e2874b067
Slight modification of RTO floor calculation.
1996-03-25 20:13:21 +00:00
Poul-Henning Kamp
6ed666afb9
Check the validity of ia->ia_ifp before we dereference it.
1996-03-25 17:41:23 +00:00
Jordan K. Hubbard
2438fbba14
Bill Fenner <fenner@parc.xerox.com> comes up with a better fix to the
...
debugger_on_panic stuff.
1996-03-25 17:06:34 +00:00
Andrey A. Chernov
42ce22e449
8bit clean fixes
1996-03-25 14:34:26 +00:00
Andrey A. Chernov
fe5fcbc78f
Convert int to uchar range for ctype
1996-03-25 14:32:30 +00:00
Andrey A. Chernov
f905bd5001
Slightly simplify inlined functions
1996-03-25 13:46:21 +00:00
Andrey A. Chernov
7871e36865
Remove half-dancing solution for signed chars to help finding
...
POSIXly-incorrect programs.
1996-03-25 13:43:24 +00:00
Andrey A. Chernov
bf93970596
Remove half-dancing solution for signed chars to help finding
...
POSIXly-incorrect programs.
1996-03-25 13:35:36 +00:00
Andrey A. Chernov
06b47700ae
Since n is int now, sanity check must be n <= 0, not simple n == 0
1996-03-25 12:03:11 +00:00
Satoshi Asami
cadce41fec
Added Harlan Stenn <Harlan.Stenn@pfcs.com> for the amanda upgrade.
1996-03-25 10:55:29 +00:00
Satoshi Asami
0092715975
Add Mike Peck (mike@binghamton.edu) for contribution of tinyfugue port.
1996-03-25 10:13:13 +00:00
Satoshi Asami
2208fa01d9
Fix typo. Closes PR docs/1099.
...
Submitted by: Masafumi NAKANE <masafumi@tky007.tth.expo96.ad.jp>
1996-03-25 09:35:25 +00:00
Satoshi Asami
6e552506d6
Add Masafumi Nakane (masafumi@pobox.com) for the ptex2 upgrade
...
contribution.
1996-03-25 04:34:20 +00:00
John Dyson
d73ce5bd92
Various pipe error return fixes, and a significant typeo fix. From
...
Bruce Evans (of course :-)).
Submitted by: bde
1996-03-25 01:48:28 +00:00
Wolfram Schneider
accb7fafc8
Obtained from: NetBSD
...
"obj" directory stuff work
1996-03-24 22:49:16 +00:00
Joerg Wunsch
defd3fe688
Add an entry for adding `vn' swap.
...
Submitted by: Werner Griessl (quoted in Usenet)
1996-03-24 22:24:10 +00:00
Paul Richards
215b228037
Move llib-lstdc to llib-lc since that's what lint expects.
1996-03-24 20:03:46 +00:00
Paul Richards
e2304a633b
Re-enable building of lint libraries.
1996-03-24 19:47:12 +00:00
Paul Richards
50359a8d3a
Build and install llib-lstdc.ln. Disable Posix version.
...
Change install mode from NONBINMODE to LIBMODE
1996-03-24 19:45:58 +00:00
Paul Richards
305ee1b388
Added creation of /usr/libdata and /usr/libdata/lint
1996-03-24 19:20:02 +00:00
Joerg Wunsch
948aa2a132
Rename the usage of private' to
private_data' to cope with the
...
recent libdisk changes. (sysinstall is guilty of using `private' in
quite more places, but since this ain't in library code, it's not that
important.)
Whenever possible, better not use C++ reserved words...
1996-03-24 18:57:37 +00:00
Joerg Wunsch
e2c8e21d6b
Make libdisk C++ aware:
...
- add __BEGIN_DECLS and __END_DECLS,
- add a bunch of ``const'' qualifiers all over the place,
- rename the `private' struct member into `private_data' to avoid the
clash with the C++ keyword.
1996-03-24 18:55:39 +00:00
Paul Richards
65bfae763d
Fix incorrect parameter types for ftell and fgets.
1996-03-24 15:51:45 +00:00
Paul Richards
880787f0fe
Fix incorrect parameter types.
1996-03-24 15:49:34 +00:00
Paul Richards
4a7eb58ade
Add xlint
1996-03-24 14:09:33 +00:00
Paul Richards
e7f9bd714d
Don't build lint libraries for the moment.
1996-03-24 13:58:27 +00:00
Paul Richards
03130ccadf
Re-instate the bootstrap target which can be used to build tools
...
that can't be built by older OS versions.
Use it to install the lint binaries.
1996-03-24 13:16:45 +00:00
Jordan K. Hubbard
a258bd3f12
Clean up the options screen a little bit by shortening it by one line
...
in the vertical axis.
1996-03-24 12:06:13 +00:00
Jordan K. Hubbard
057b98d13f
The name of the lynx package has changed - update it.
1996-03-24 09:43:53 +00:00
Jordan K. Hubbard
d28a7b994c
Remove some rather useless debugging messages.
1996-03-24 09:36:41 +00:00
Jordan K. Hubbard
a7939d5aa6
Here is a patch to talkd which makes it send the request to the tty with
...
the lowest idle time.
Submitted by: loodvrij@gridpoint.com (Bruce J. Keeler)
1996-03-24 09:27:20 +00:00