| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
man pages adapted from OpenBSD's versions.
|
|
|
|
| |
Reviewed by: wollman
|
|
|
|
|
|
|
| |
explicit that it is global to the entire "session", and that setsid() or
daemon() are need to have been called at some point.
The most notable offender of setlogin() misuse is XFree86's xdm.
|
|
|
|
|
|
|
| |
fts_open.3 -> fts.3
fts_read.3 -> fts.3
fts_children.3 -> fts.3
fts_close.3 -> fts.3
|
|
|
|
|
|
| |
with more than 4 octets (e.g. 1.2.3.4.5).
Submitted by: Amy Baron <amee@beer.org> via NetBSD-bugs
|
| |
|
|
|
|
|
|
| |
for "fts_open" was wrong. Also, the "fts_info" field of the FTSENT
structure was misleadingly described as containing "flags". Actually, it
contains a single integer value.
|
|
|
|
|
|
|
|
| |
in the main text of various man pages.
Thanks to Warner Losh for adding an option to manck to allow
it to scan the entire man page looking for bogus xrefs, instead
of just checking the SEE ALSO section.
|
|
|
|
|
|
|
|
|
|
| |
resides in read-only memory is going to cause the program to core dump,
and this is commmon with older pre-ANSI C programs.
(I've scratched my head over this one at 3 in the morning before
while trying to port some ancient program)
Suggested by: Gary Kline <kline@tera.com>
|
| |
|
| |
|
|
|
|
| |
Obtained from: NetBSD
|
|
|
|
| |
Down to only about 100 items left to cleanup! :-)
|
|
|
|
| |
process and changed all of the old references to update(8) to update(4).
|
| |
|
|
|
|
|
|
| |
try and silence "manck".
ncurses, rpc, and some of the gnu stuff are still a big mess, however.
|
| |
|
| |
|
|
|
|
|
|
|
| |
Also corrected a few minor formatting errors, file location and cross
references in some of the section 3 man pages.
This shuts up a lot of the output from "manck" for section 3.
|
| |
|
|
|
|
|
| |
in preparation for its removal from the kernel source tree. NB: because
a function was deleted, libc is now at version 3.0 (was 2.2 previously).
|
|
|
|
| |
(There were cases where it was leaving the status uninitialized.)
|
| |
|
|
|
|
|
| |
add a BUG section for mmap with current limitation
section SYNOPSIS completed
|
| |
|
| |
|
|
|
|
|
| |
an invalid pointer if a call to yp_first() fails. Closes PR # 964,
and possibly # 952.
|
|
|
|
|
| |
were deleted out after the initial import now that Peter's code has
implemented them in -current.
|
| |
|
|
|
|
| |
it means when that signal is received. Closes PR# 686.
|
| |
|
|
|
|
|
|
| |
Submitted by: John Birrel(L?)
changes for threadsafe operations
|
|
|
|
| |
- install ptrace.2
|
|\
| |
| |
| | |
which included commits to RCS files with non-trunk default branches.
|
| |
|
|
|
|
|
|
|
|
| |
man pages.
Masanobu Saitoh <msaitoh@spa.is.uec.ac.jp>
Giles Lean <giles@nemeton.com.au>
<soda@sra.co.jp>
|
|
|
|
| |
was some datum given).
|
| |
|
|
|
|
|
|
| |
itself as strcspn().
Obtained from: NetBSD-bugs mailing list (PR# 1905)
|
|
|
|
| |
parts are not quite so simple..
|
|\
| |
| |
| | |
which included commits to RCS files with non-trunk default branches.
|
| |
| |
| |
| | |
This import to the vendor branch changes no files...
|
| |
| |
| |
| | |
Found by: Lars Fredriksen <fredriks@mcs.com>
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| | |
Install (optional) libutil.h with prototypes for the functions and
document this in the man page.
minor cleanups to the various routines, include the prototype file, declare
return codes etc.
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
of signals. Signals are now properly caught, tty state is being
restored, and the previous sigaction triggered. Upon receipt of a
sigcont, echo is turned off again.
SIGTSTP causes a buffer flush, the man page mentions this. (Although
i rather think of it as a feature than a bug.)
This is likely to be my last FreeBSD action for 1995, xearth shows
me that our .au guys must already write 1996. :-)
|
| |
| |
| |
| | |
which included commits to RCS files with non-trunk default branches.
|
| | |
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
looking at a high resolution clock for each of the following events:
function call, function return, interrupt entry, interrupt exit,
and interesting branches. The differences between the times of
these events are added at appropriate places in a ordinary histogram
(as if very fast statistical profiling sampled the pc at those
places) so that ordinary gprof can be used to analyze the times.
gmon.h:
Histogram counters need to be 4 bytes for microsecond resolutions.
They will need to be larger for the 586 clock.
The comments were vax-centric and wrong even on vaxes. Does anyone
disagree?
gprof4.c:
The standard gprof should support counters of all integral sizes
and the size of the counter should be in the gmon header. This
hack will do until then. (Use gprof4 -u to examine the results
of non-statistical profiling.)
config/*:
Non-statistical profiling is configured with `config -pp'.
`config -p' still gives ordinary profiling.
kgmon/*:
Non-statistical profiling is enabled with `kgmon -B'. `kgmon -b'
still enables ordinary profiling (and distables non-statistical
profiling) if non-statistical profiling is configured.
|