lukem
d1d45ba716
fix -P (which was broken in rev 1.29)
2002-03-04 13:16:03 +00:00
ad
1858d37330
The first Solaris release with pkill and friends was 2.7.
2002-03-04 12:58:03 +00:00
wiz
cb6786d45f
Replace some more special pointers to zero (NIL, NONE, NOVAR, NOGRP, NOGE)
...
with NULL.
2002-03-04 03:16:10 +00:00
wiz
ab85015570
Don't use special null string pointer (NOSTR), just use NULL.
2002-03-04 03:07:25 +00:00
enami
9b95f1b1f3
We don't want token while we're aborting. Otherwise, make spins wasting cpu.
2002-03-04 00:34:35 +00:00
wiz
76925748f3
WARNS=2.
2002-03-02 15:29:49 +00:00
wiz
4e972651c7
Rename variables to avoid shadowing.
2002-03-02 15:27:51 +00:00
wiz
b127cccc2e
ANSIfy, and minimal KNF.
2002-03-02 14:59:35 +00:00
wiz
5784cccd6b
WARNS=2.
2002-03-02 14:02:23 +00:00
wiz
024b462262
Rename a variable to avoid shadowing.
2002-03-02 14:00:26 +00:00
wiz
f2ed23835a
ANSIfy.
2002-03-02 13:57:28 +00:00
wiz
482ca46625
ANSIfy, minor KNF.
2002-03-02 13:55:13 +00:00
jdolecek
5ef6f9ca40
Add HISTORY section. I _think_ these appeared in Solaris 2.6, please
...
fix if it's not so.
2002-03-02 12:20:53 +00:00
tv
011931b3b4
Add <errno.h> to list of includes, from <imago@13thmonkey.org>,
...
in PR toolchain/15386.
2002-03-02 03:56:02 +00:00
ad
3008493f3f
Fix typo.
2002-03-01 11:44:29 +00:00
wiz
f56906c431
A persistent typo, and some minor mark-up improvements.
2002-03-01 11:42:52 +00:00
ad
38b296bf9f
s/LINT/lint/
2002-03-01 11:29:46 +00:00
ad
9c52aa2804
Descend into pkill/.
2002-03-01 11:23:14 +00:00
ad
3b8a0d4f4f
pgrep and pkill: search the process table for processes with a particular
...
set of characteristics, and either print or signal the matching set. Mostly
compatible with the Solaris commands of the same name.
2002-03-01 11:21:58 +00:00
lukem
0d4517aa6c
When metalogging a hard link, don't log it as "type=hlink".
...
Instead, stat the type, and only log an entry if it's a "type=file".
We could log hard links to symlinks, but they're not portable and
their use has been deprecated in our source tree.
Hard links to other types aren't as useful at this stage; if the need
arises we can change this to log the appropriate information then.
2002-02-28 00:22:51 +00:00
lukem
a3bab9b7d7
clarification of vflag
2002-02-27 03:55:14 +00:00
lukem
e16c1d5cbc
if not -n and the local socket doesn't have INP_ANONPORT set, always try
...
to determine the symbolic name of the foreign port.
previously the foreign port would be displayed numerically in this case if
the local & foreign ports were different. this particular behaviour was
added in rev 1.28 when I added INP_ANONPORT support from FreeBSD, and for
the life of me I can't fathom the rationale for it ;-|
2002-02-27 02:33:51 +00:00
wiz
c640510df0
Correct spelling of "delimiter", and remove from ignored-errors lists.
2002-02-26 02:37:28 +00:00
augustss
957cbd212d
Update man pages to reflect the use of /dev/sound instead of /dev/audio.
2002-02-26 00:15:57 +00:00
enami
41e1be38c5
- Kill whitespaces at the end of line.
...
- Wrap long line.
2002-02-25 00:39:04 +00:00
thorpej
4fa7ef5e39
Make this Makefile work on non-MIPS again.
2002-02-24 01:52:09 +00:00
gmcgarry
1635c6c690
Handle being built as a host tool.
2002-02-23 21:34:06 +00:00
reinoud
502866c1fe
Pull every file parsing context into one structure instead of using a few
...
file global variables... adding an extra context variable is thus allmost
trivial now.
2002-02-21 22:21:34 +00:00
christos
6728d906e9
Prefix structure members to protect them against clashes with eg. c++ keywords.
...
Suggested by Alfred Perlstein, from FreeBSD, ok'd by augustss
2002-02-20 20:30:12 +00:00
thorpej
b6d2afdc45
Add constants that describe the target's max/min INT, UINT, LONG, ULONG,
...
QUAD, and UQUAD values.
2002-02-20 16:10:34 +00:00
joda
4929305fb3
when creating a v4 ticket file, name it after the users uid, not our
...
current (should finally fix bin/13040)
2002-02-20 08:17:17 +00:00
enami
2c0bf8440e
Don't forget to fetch pool cache group.
2002-02-20 07:52:43 +00:00
enami
6af26372f1
When printing pool stats, print pool cache stats also if -v is given.
2002-02-20 07:43:30 +00:00
pk
3efeed43b5
Make{_}HandleUse(): update comments and layout, re-arrange to avoid some
...
code duplication.
2002-02-18 12:13:59 +00:00
pk
0b349f0680
Make_HandleUse() no longer has a return value,
2002-02-18 00:35:39 +00:00
pk
13a2e60c3c
The use of OP_MARK in the MakeHandleUse() list callback function prevents
...
the removal of .USE nodes from a node's children list in case a given .USE
nodes appears multiple times on that list, preventing the target from ever
making it on the `to be made' queue.
Since the suffix rule processing code deals itself with removing the
transformation nodes from the parents to which it applies them, arrange
for doing the same for .USE nodes in MakeHandleUse() instead of in
Make_HandleUse(), and still use the OP_MARK stuff to avoid duplication
of commands.
Also, since Make_HandleUse() is not a list callback function and its
return value is no longer used, make its return type void.
2002-02-18 00:33:40 +00:00
pk
bf488acb77
Add the default main target to the ${.TARGETS} variable, too.
2002-02-17 23:53:46 +00:00
pk
24039928a5
Prevent a premature end of the iteration if the first element in the list
...
is removed from the callback function.
2002-02-17 23:49:01 +00:00
jonb
549323fedc
Make the -v flag print data instead of blank lines. Thanks to
...
Duncan McEwan <duncan@mcs.vuw.ac.nz> for the hint in PR#15412.
I'll leave the rest of his patch for someone more familiar
with join to fix.
2002-02-14 03:21:07 +00:00
christos
35734831f9
reverse the notion of fancy, use plain, and increment it so that we can
...
have multiple levels of plainness. I want to be able to display syscalls
numerically, for that use -nn. This is not documented as it is an wip.
2002-02-12 22:22:37 +00:00
simonb
ba31699a83
Add an extra column for inode numbers, and pull back the mode field to
...
just 5 columns if in "numeric" mode. Other fields should dynamically
resize, but not today...
2002-02-12 03:28:20 +00:00
pooka
69d4c677a2
bump version to nb6 after fixing bin/15474
2002-02-11 19:52:00 +00:00
thorpej
8eeabb6873
acorn32 and cats get fdformat.
2002-02-11 18:55:11 +00:00
wiz
89f6005c6b
s/infinate/infinite/
2002-02-11 11:00:07 +00:00
wiz
f78eb76cbe
achive is not a good word.
2002-02-11 10:57:57 +00:00
wiz
573e59fb5c
Lots of typos.
2002-02-11 00:57:58 +00:00
wiz
638f85ed29
Be more verbose in description of -e.
2002-02-10 16:46:44 +00:00
mrg
16189b5a23
- add a AUDIO_FORMAT_DEFAULT. use it. don't change functionity.
...
- fix the function selection in sunau conversions.
- be more verbose when given -V. (hi lennart! :)
2002-02-10 15:30:53 +00:00
mrg
53ecceda8d
apply the same fix as the previous to WAV output creation.
2002-02-10 13:23:27 +00:00
mrg
10d9e15ba0
convert the host (non _LE or _BE) encodings we can, as well. fixes part
...
of PR#12809...
2002-02-10 13:16:08 +00:00