christos
7c30c00a8c
rename nset to infoset from jhawk.
2000-08-02 19:44:18 +00:00
christos
80dd95bb8f
block siginfo during writes.
2000-08-02 16:46:16 +00:00
jwise
643a9478fa
Use .At v1 macro instead of spelling out AT&T Unix version 1.
2000-08-02 15:42:24 +00:00
christos
a32679938b
don't use the "f" flag to fopen when -f is not specified (from Chuck Cranor)
2000-07-31 02:49:28 +00:00
lukem
ba2e04dc88
convert to new KNF
2000-07-29 03:46:14 +00:00
cgd
2a1ee59131
un-__P functions declared in parser.h. host programs include parser.h,
...
and so it shouldn't use __P. (this should probably be done better, by
not declaring the parser functions in headers used by host programs,
but this works well enough.)
2000-07-27 04:09:27 +00:00
cgd
96df053cba
host program portability: set infp to stdin at runtime, since apparently
...
some systems (e.g. linux) define stdin in such a way that it can't
be used to initialize values at compile time.
2000-07-27 04:06:49 +00:00
mycroft
e8f910e0d5
ts_nsec -> tv_nsec, per POSIX.
2000-07-23 20:50:44 +00:00
cgd
28728fd305
host program portability: don't use <sys/cdefs.h>, __COPYRIGHT(),
...
__RCSID(), or __P(). (these programs have been de-__P()'d.)
Repeat after me: "Not all cross-compilation host systems are NetBSD."
2000-07-18 19:13:20 +00:00
jhawk
9d53f2aee6
Various mandoc updates to the Builtins
...
section; mostly .Ic, a few other nits.
2000-07-18 01:55:48 +00:00
jhawk
45a8e6b7e3
Note the meaning of 'trap 0' (execute on exit from shell)
2000-07-17 21:18:47 +00:00
darrenr
79a28eb80d
don't emit a warning message if fchflags() returns EOPNOTSUPP
2000-07-16 04:49:55 +00:00
darrenr
e6cda25dbf
From FreeBSD:
...
To make inherit file flags when mv(1) moves file between directories
on different file systems.
2000-07-15 15:11:04 +00:00
itojun
bbef2fbaac
errx?/warnx? audit. do not pass variable alone, use %s. idea from openbsd
2000-07-07 15:10:32 +00:00
itojun
a1e2f21a4c
errx?/warnx? audit. do not pass variable alone, use %s. idea from openbsd
2000-07-07 12:50:15 +00:00
itojun
127c71b0b1
do not pass user-supplied string alone, to errx?(). use "%s".
...
from openbsd.
2000-07-07 11:54:57 +00:00
thorpej
547c89117a
Implement --atime-preserve.
2000-07-04 17:28:47 +00:00
thorpej
a3a7c5ccf1
Implement --use-compress-program.
2000-07-04 17:24:47 +00:00
thorpej
4120b8a499
Add GNU tar-style long options for pax's tar front-end. Still many
...
GNU options not implemented, but there is an #if 0'd out canonical
list.
2000-07-04 17:17:49 +00:00
matt
e2056eada9
include <stdlib.h>, <string.h>, or whatever as appropriate to shut up
...
gcc 2.96
2000-07-03 03:26:17 +00:00
mrg
8d4795719a
remove include of <vm/vm.h>
2000-06-29 06:26:33 +00:00
christos
54d8f9cccb
Add -a flag now that we have support for MNT_IGNORE
2000-06-26 21:16:15 +00:00
kleink
8bab1c8bba
$(CPP) -> $(CC) -E
2000-06-26 06:18:07 +00:00
simonb
eb32670668
Remove the 'poip' (pageouts in progress) keyword from the manpage.
...
From PR bin/8843 by Brian Stark.
2000-06-24 07:43:22 +00:00
thorpej
df83a2a3cd
Add MK... variables to enable/disable various aspects of building
...
crypto support into the system. See share/mk/bsd.README for more
a full description.
2000-06-23 06:01:10 +00:00
assar
b23df5be68
make sure to print file names consistenly in column mode
2000-06-22 23:42:22 +00:00
soren
f939de5a66
CLEANFILES+= siglist.out emacs.out
2000-06-22 05:42:22 +00:00
thorpej
e7d6b96938
Merge a bunch of things from crypto-us and crypto-intl into basesrc,
...
adding support for Heimdal/KTH Kerberos where easy to do so. Eliminate
bsd.crypto.mk.
There is still a bunch more work to do, but crypto is now more-or-less
fully merged into the base NetBSD distribution.
2000-06-20 06:00:24 +00:00
mrg
27f963a94f
minor KNF nits.
2000-06-17 18:19:10 +00:00
assar
c5a806697b
Do not modify the file name when not printing non-printables, also do
...
it consistently with the file name and possible symbolic link target.
fixes bin/10385 and bin/10384
2000-06-17 16:11:25 +00:00
thorpej
dfbbcfb967
libcrypt can now always decrypt, so always -DDES, and eliminate the
...
<bsd.crypto.mk> song-and-dance.
2000-06-16 16:33:06 +00:00
simonb
643cb3c341
Don't check namelist when choosing to use the sysctl interface.
2000-06-16 03:51:00 +00:00
simonb
d530ee00d1
Fix handling of "ps U<user>" where <user> ended it 't' - now if the
...
first argument doesn't start with a '-' and ends in 't', the 't' only
gets converted to a 'T' (for listing processes on the current tty)
if it doesn't contain any other command line option characters that
take an argument. Problem noticed by ITOH Yasufumi on tech-userlevel.
If the 'start' format was the last column, the width wouldn't be set
and started() output a zero length string instead of a string the right
length - fix header width calculations so the the last column is handled
the same all others. This only showed up for 'start' because started()
knew that the column header is the same width and the field itself...
Update copyrights.
2000-06-08 13:30:39 +00:00
simonb
292b668867
Fix back-to-front assignment in tname() which meant that the column
...
width would never autosize past the header ("TT") width. Problem
noticed by Geoff Wing.
2000-06-08 00:51:10 +00:00
simonb
a98dd470c6
Calculate field widths on the fly so that all columns line up nicely
...
and make more effective use of screen real estate when some columns
(eg USER and VSZ) didn't need the full default width.
2000-06-07 04:57:59 +00:00
simonb
a717560d21
G/C evar() - now that everything is in the one structure it was exactly
...
the same as pvar().
2000-06-02 03:39:02 +00:00
christos
0bf6fd0c59
decouple us from stdio's BUFSIZ and boost BUFSIZE to 4K
2000-05-31 22:48:44 +00:00
bjh21
d12393eb8e
Add Ev tag to COLUMNS
2000-05-28 21:14:11 +00:00
simonb
fd521aefe9
Use new sysctl/kvm interfaces. This will stop the "proc size mismatch"
...
errors when internal kernel structures change size. Also remove
the sgid bit - all live kernel data is accessed through the sysctl
interface.
2000-05-26 03:04:28 +00:00
thorpej
06b81d67f4
Handle SONPROC state.
2000-05-26 00:42:34 +00:00
elric
e6bccfe4be
Back out previous vfork changes.
2000-05-22 10:18:46 +00:00
mason
fccb8467cd
Improved style: "For definiteness" becomes "For example".
2000-05-21 00:48:45 +00:00
elric
f5dccf4728
When vforking ensure that the environment passed to exec is built before
...
vforking as a set of local variables which can be popped by the parent.
Addresses bin/10124.
2000-05-17 07:37:12 +00:00
elric
e8b0f2b813
INTON and FORCEINTON modify global variables, and so should not be
...
executed while we are vforked.
2000-05-15 03:42:48 +00:00
elric
c55fa30be8
Added includes for waitpid, sys/types.h and sys/wait.h.
2000-05-13 21:11:45 +00:00
elric
a0ef2ea948
In order to use __NetBSD_Version__, I needed to include sys/param.h.
2000-05-13 21:11:16 +00:00
elric
0eece24a3a
Unused variable pgrp on line 576.
2000-05-13 20:59:41 +00:00
elric
4aeaa113a7
Quick fix.
...
jobs.h:91: warning: declaration of `vfork' shadows global declaration
2000-05-13 20:56:08 +00:00
elric
756a2ca1bd
Now we use vfork(2) instead of fork(2) when we can.
2000-05-13 20:50:14 +00:00
christos
eb7c557ca3
s/exit_status/signal_number/
2000-05-13 17:04:04 +00:00