summaryrefslogtreecommitdiff
path: root/Documentation/technical
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2013-01-14 08:01:27 -0800
committerJunio C Hamano <gitster@pobox.com>2013-01-14 08:01:27 -0800
commit750a6cacf49dd57a4b4891ffdbd63191180273da (patch)
tree43d467def1e540b1b9902d5ef54f1de578c5aaf9 /Documentation/technical
parent32a03dc165e2a65fdb20a4ddbe51eaa1e5f52c5b (diff)
parent709ca730f8e093005cc882bfb86c0ca9c83d345b (diff)
downloadgit-750a6cacf49dd57a4b4891ffdbd63191180273da.tar.gz
Merge branch 'jk/unify-exit-code-by-receiving-signal' into maint
* jk/unify-exit-code-by-receiving-signal: run-command: encode signal death as a positive integer
Diffstat (limited to 'Documentation/technical')
-rw-r--r--Documentation/technical/api-run-command.txt6
1 files changed, 2 insertions, 4 deletions
diff --git a/Documentation/technical/api-run-command.txt b/Documentation/technical/api-run-command.txt
index f18b4f4817..5d7d7f2d32 100644
--- a/Documentation/technical/api-run-command.txt
+++ b/Documentation/technical/api-run-command.txt
@@ -55,10 +55,8 @@ The functions above do the following:
non-zero.
. If the program terminated due to a signal, then the return value is the
- signal number - 128, ie. it is negative and so indicates an unusual
- condition; a diagnostic is printed. This return value can be passed to
- exit(2), which will report the same code to the parent process that a
- POSIX shell's $? would report for a program that died from the signal.
+ signal number + 128, ie. the same value that a POSIX shell's $? would
+ report. A diagnostic is printed.
`start_async`::