13916 Commits

Author SHA1 Message Date
wiz
f592f951d4 Remove superfluous Ns. 2019-09-01 19:12:16 +00:00
wiz
3e49c49077 Remove superfluous Pp. 2019-09-01 19:10:39 +00:00
sevan
6eaac38858 write was in v1
https://www.bell-labs.com/usr/dmr/www/man14.pdf
2019-09-01 18:48:01 +00:00
sevan
9e5ce6cda6 Update URL 2019-09-01 18:46:22 +00:00
sevan
ddac411ea4 Document history
https://www.bell-labs.com/usr/dmr/www/man14.pdf
2019-09-01 18:44:06 +00:00
sevan
17e867a69e Document history
https://www.bell-labs.com/usr/dmr/www/man13.pdf
2019-09-01 18:41:14 +00:00
sevan
a4ee5060f0 su was in v1
https://www.bell-labs.com/usr/dmr/www/man13.pdf
2019-09-01 18:37:44 +00:00
sevan
450d651e78 Document history
https://www.bell-labs.com/usr/dmr/www/man13.pdf
2019-09-01 18:31:37 +00:00
sevan
a77b177db2 mesg was in v1
https://www.bell-labs.com/usr/dmr/www/man12.pdf
2019-09-01 18:26:01 +00:00
sevan
822dbc9721 mail was in v1
https://www.bell-labs.com/usr/dmr/www/man12.pdf
2019-09-01 18:24:28 +00:00
sevan
01835ef10c du was in v1
https://www.bell-labs.com/usr/dmr/www/man12.pdf
2019-09-01 18:18:42 +00:00
sevan
84c091c750 dc was in v1
https://www.bell-labs.com/usr/dmr/www/man12.pdf
2019-09-01 18:15:57 +00:00
sevan
b80ec07d43 sort was there since v1
https://www.bell-labs.com/usr/dmr/www/man61.pdf
2019-09-01 18:04:54 +00:00
isaki
3dbad28612 Revert about index number changes. It breaks its usage and output format.
Pointed out by mrg@.
2019-08-24 07:39:42 +00:00
isaki
52ec5b0764 Create a waveform in hardware native sample rate which is more efficient. 2019-08-24 06:32:25 +00:00
isaki
0c69e485a6 AUDIO_GETBUFINFO is more efficient for this purpose. 2019-08-24 06:16:27 +00:00
isaki
04ea388fd4 Fix markup. index of list command is optional. 2019-08-24 06:13:01 +00:00
isaki
8452326aba Make the same code that appears repeatedly a function. 2019-08-24 06:11:10 +00:00
isaki
16e140802c Use err(3)/warn(3) instead of perror(3)/fprintf(stderr,...).
Use getprogname(3) for usage().
2019-08-24 06:00:49 +00:00
isaki
2116fa4f0a Check mode argument earlier. 2019-08-24 05:51:06 +00:00
isaki
cb1e8d26ed Use device unit number for index.
The index number was too confusing such as
 0: [ ] audio1 @ wss0
 1: [*] audio0 @ yds0
in my PC for example.  Here is new format:
 [*] audio0 @ yds0
 [ ] audio1 @ wss0
In this style, devices are always listed in order of unit number
and 0 always means audio0, 1 always means audio1.
2019-08-24 05:45:24 +00:00
isaki
ab49aa4fd6 Revert to use single descriptor for "audiocfg test" as before. 2019-08-24 04:04:10 +00:00
isaki
923f5af2bd Rename some members in adev for clarity. No functional changes intended. 2019-08-24 03:28:37 +00:00
sevan
f918268338 Add Danny Cohen
https://www.nytimes.com/2019/08/16/obituaries/danny-cohen-who-helped-set-the-stage-for-a-digital-era-dies-at-81.html
2019-08-23 11:09:14 +00:00
isaki
5e4788ee0a Fix assertion of "audiocfg list <n>" when n is an illegal index. 2019-08-22 14:40:14 +00:00
christos
8603a9eb39 check speed argument conversion (Thierry Laronde) 2019-08-18 14:16:02 +00:00
kamil
fc2fae23cf netstat: Add indirection of symbols to remove clash with sanitizers
Add indirection and symbol renaming under MKSANITIZER for the linked in
version of sysctlbyname, sysctlgetmibinfo and sysctlnametomib.
2019-08-18 04:14:40 +00:00
kamil
774dcce2f6 sockstat: Add indirection of symbols to remove clash with sanitizers
Add indirection and symbol renaming under MKSANITIZER for the linked in
version of sysctlgetmibinfo and sysctlnametomib.
2019-08-18 04:13:24 +00:00
joerg
fb6d0a4e0d Explicitly link against libpthread and liblzma to make static linking
happy. Newer libarchive supports LZMA compression in zip files.
2019-07-28 12:44:36 +00:00
christos
1a0087198a PR/54410: fmoon: typos in mail(1) 2019-07-26 13:05:30 +00:00
sevan
f6d2123b3a Add bicycle day 2019-07-23 18:28:59 +00:00
nonaka
889dcccd73 kdump(1): Symbolic printing for MALLOC_OPTIONS="U". 2019-07-23 01:54:51 +00:00
kre
8ad10c91e9 Amend the previous change: we can have (almost) the best of both
worlds, as when the first arg (which should be the format) contains
no % conversions, and there are more args, the results are unspecified
(according to POSIX).

We can use this so the previous usage
	printf -- format arg...
(which is stupid, and pointless, but used to work) continues to
simply ignore the -- (unspecified results mean we can do whatever
feels good...)

This brings back the #if 0'd block from the previous modification
(so there is no longer anything that needs cleaning up later) but runs
the getopt() loop it contained only when there are at least 2 args
(so any 1 arg printf always uses that arg as the format string,
whatever it contains, including just "--") and also only when the
first (format) arg contains no '%' characters (which guarantees no %
conversions without needing to actually parse the arg).  This is the
(or a) "unspecified results" case from POSIX, so we are free to do
anything we like - including assuming that we might have options
(we don't) and pretending to process them.
2019-07-22 17:34:31 +00:00
kre
b6a771f35e Stop assuming that printf handles options in any way at all
(it doesn't - that is, shouldn't) which includes processing -- as an
"end of options".  The first arg is (always) the format string.

Remove call to getopt() (but still do associated changes to argc/argv)

Note: for now this is #if 0's out instead of being deleted, the old
code should be fully removed sometime soon.

Problem pointed out on tech-userlevel by Thierry Laronde.
2019-07-21 15:25:39 +00:00
sevan
b60ae75e99 Add Fernando Jose Corbato
https://multicians.org/corby.html
https://www.nytimes.com/2019/07/12/science/fernando-corbato-dead.html
2019-07-14 10:43:01 +00:00
christos
a713a1068c allow c9x struct casts (in new libXt) 2019-07-12 23:32:45 +00:00
msaitoh
03e9d50adf Fix typo (s/supress/suppress/). 2019-07-11 03:49:51 +00:00
he
feecb28e70 Make the scaling of the "bytes written" sticky, so that if we go
to K, we don't return to unscaled, and similar for higher scales
(though it takes some effort, due to the wide field...)
Fixes PR#54334.
2019-06-30 19:57:23 +00:00
sevan
a8ded70395 Add John von Neumann's date of death 2019-06-30 11:21:40 +00:00
joerg
85722e51b9 Do the fmtcheck for both message lookups to satisfy format string
literal checks.
2019-06-25 21:09:33 +00:00
martin
787f237e5b Limit maximum owner name to appease gcc 2019-06-25 14:52:55 +00:00
christos
c9e3ec3ad5 Use OPT_NOMENU instead of -1 2019-06-23 22:48:15 +00:00
christos
7743b1bf0c use calloc properly. 2019-06-23 22:47:22 +00:00
christos
48d8b2ae49 don't cast malloc. 2019-06-23 22:46:53 +00:00
christos
e2deb0a92c define as hex and make MC_VALID smaller so it fits in a short. 2019-06-23 22:46:41 +00:00
martin
d8297eb873 Menu 0 does not exist anymore (it is now OPT_NOMENU), so emit an empty
menu defintion for it.
2019-06-23 11:31:10 +00:00
martin
5908298eb7 Use OPT_NOMENU as error return for new_menu (instead of old hard coded -1).
Update man page for the OPT_NOMENU change.
2019-06-23 11:22:48 +00:00
christos
4a69030bcd trim down error checking if we are small. 2019-06-22 23:40:53 +00:00
christos
9bedb72e28 make this compile again with -DNO_PROGRESS 2019-06-22 23:40:33 +00:00
christos
4cd30f5b0c Conserve space: make ints to shorts and make OPT_NOMENU 0 instead of -1
so we don't require initializing it.
2019-06-22 20:44:54 +00:00