summaryrefslogtreecommitdiffstats
path: root/08-exit-codes.txt
diff options
context:
space:
mode:
Diffstat (limited to '08-exit-codes.txt')
-rw-r--r--08-exit-codes.txt6
1 files changed, 6 insertions, 0 deletions
diff --git a/08-exit-codes.txt b/08-exit-codes.txt
index bdc406e..df3fb9b 100644
--- a/08-exit-codes.txt
+++ b/08-exit-codes.txt
@@ -57,6 +57,12 @@ Solution #3: grep this document and pray it will help you :)
bash: fork: retry: No child processes
bash: fork: retry: No child processes
- see also [1]
+ - bash code perspective:
+ jobs.c:
+ last_command_exit_value = EX_NOEXEC;
+ /** exit_value = EX_NOEXEC = 126 **/
+ throw_to_top_level (); /* Reset signals, etc. */
+ /** exit_value = 126 | 128 = 254 **/
[1] http://unix.stackexchange.com/questions/19113/fork-negative-return-value/19119#19119