new program: timeout
authorPádraig Brady <P@draigBrady.com>
Fri, 28 Mar 2008 11:05:55 +0000 (11:05 +0000)
committerJim Meyering <meyering@redhat.com>
Mon, 2 Jun 2008 12:40:26 +0000 (14:40 +0200)
commit265c4b83a81c643f3359be926ef8034f28f321ed
tree4e8cf6f6938638e99f1e0d848780029480e28216
parent4a510cd3997325cd8617c0ae082c9eb7220208d6
new program: timeout

* AUTHORS: Register as the author.
* NEWS: Mention this change.
* README: Add timeout command to list.
* src/timeout.c: New file.
* src/kill.c (operand2sig): Move function to its own file,
now that timeout.c will also use it.
* src/operand2sig.c (operand2sig): New file, extracted from kill.c.
* src/operand2sig.h (operand2sig): Declare.
* src/Makefile.am (EXTRA_PROGRAMS): Add timeout.
* src/.gitignore: Add timeout binary to list to ignore.
* doc/coreutils.texi (timeout invocation): Add timeout info.
(Signal specifications): New section, also referenced by kill.
* man/Makefile.am (timeout.1): Add dependency.
* man/timeout.x: New file.
* po/POTFILES.in: Add timeout.c and operand2sig.c to list to translate.
* tests/Makefile.am (TESTS): Add the two new tests.
* tests/misc/help-version: Add support for new timeout command.
* tests/misc/invalid-opt: Add support for new timeout command.
* tests/misc/timeout: New file: check basic timeout operation.
* tests/misc/timeout-parameters: New file: check invalid parameter
combinations.
19 files changed:
AUTHORS
NEWS
README
configure.ac
doc/coreutils.texi
man/Makefile.am
man/timeout.x [new file with mode: 0644]
po/POTFILES.in
src/.gitignore
src/Makefile.am
src/kill.c
src/operand2sig.c [new file with mode: 0644]
src/operand2sig.h [new file with mode: 0644]
src/timeout.c [new file with mode: 0644]
tests/Makefile.am
tests/misc/help-version
tests/misc/invalid-opt
tests/misc/timeout [new file with mode: 0755]
tests/misc/timeout-parameters [new file with mode: 0755]