aboutsummaryrefslogtreecommitdiff
path: root/shell
AgeCommit message (Expand)Author
2016-11-03ash: while (!got_sig) pause() is not reliable, use sigsuspend()Denys Vlasenko
2016-10-30ash: if using libc glob(), skip it if no metachars are in wordDenys Vlasenko
2016-10-30ash: fix bit-rotten debug infrastructureDenys Vlasenko
2016-10-30ash: make popfile() anfter popallfiles() safeDenys Vlasenko
2016-10-28hush: fix "(sleep 1; exit 3) & sleep 2; echo $?; wait $!; echo $?"Denys Vlasenko
2016-10-28hush: fix "wait PID"Denys Vlasenko
2016-10-28ash: use pause(), not sigsuspend(), in wait builtinDenys Vlasenko
2016-10-28ash: fix interactive "command eval STRING" exiting on errors.Denys Vlasenko
2016-10-27ash: [JOBS] Fix dowait signal raceDenys Vlasenko
2016-10-27ash: [SIGNAL] Remove EXSIGDenys Vlasenko
2016-10-27ash: open-code blocking_dowait_with_raise_on_sig()Denys Vlasenko
2016-10-27ash: return to DOWAIT_* constants similar to dash, no logic changesDenys Vlasenko
2016-10-27ash: delete leftovers from "simplify EOF/newline handling in list parser" commitDenys Vlasenko
2016-10-27ash: [EXPAND] Fix ifsfirst/ifslastp leakDenys Vlasenko
2016-10-27ash: move ifsbreakup() and ifsfree() upDenys Vlasenko
2016-10-27ash: partially sync with dash on "fork if traps are set" logicDenys Vlasenko
2016-10-27ash: [SHELL] Expand ENV before using itDenys Vlasenko
2016-10-27ash: comment tweaks, no code changesDenys Vlasenko
2016-10-26ash: optimize tryexec(): avoid one allocationDenys Vlasenko
2016-10-26ash: [CD] Lookup PWD after going through CDPATHDenys Vlasenko
2016-10-26ash: [MEMALLOC] Made grabstackblock an inline wrapper for stallocDenys Vlasenko
2016-10-26ash: [VAR] Remove setvarsafeDenys Vlasenko
2016-10-26ash: use shellparam.optind/optoff in getopts() directly, not through pointersDenys Vlasenko
2016-10-26ash: [PARSER] Size optimisations in parameter expansion parserDenys Vlasenko
2016-10-26ash: [PARSER] Recognise here-doc delimiters terminated by EOFDenys Vlasenko
2016-10-26ash: [PARSER] Fix parsing of ${##1}Denys Vlasenko
2016-10-26ash: [REDIR] Remove redundant CLOEXEC callsDenys Vlasenko
2016-10-26ash: [REDIR] Replace copyfd by savefd and use dup2 elsewhereDenys Vlasenko
2016-10-26typo fixesDenys Vlasenko
2016-10-26ash: [BUILTIN] Treat OPTIND=0 in the same way as OPTIND=1Denys Vlasenko
2016-10-26ash: [PARSER] Report substition errors at expansion timeDenys Vlasenko
2016-10-25ash: [REDIR] Move null redirect checks into callerDenys Vlasenko
2016-10-25ash: [PARSER] Do not show prompts in expandstrDenys Vlasenko
2016-10-25ash: [EXPAND] Removed herefd hackDenys Vlasenko
2016-10-25ash: [SHELL] Move flushall to the point just before _exitDenys Vlasenko
2016-10-25ash: [EVAL] Let funcnode refer to a function definition, not its first commandDenys Vlasenko
2016-10-25ash: [REDIR] Remove EMFILE special caseDenys Vlasenko
2016-10-25ash: [EVAL] Check exit for eval NSUBSHELLDenys Vlasenko
2016-10-25ash: add comment explaining "set -e; $(cmd)" discrepancyDenys Vlasenko
2016-10-25ash: reduce code differences from upstreamDenys Vlasenko
2016-10-25ash: remove unused EXSHELLPROCDenys Vlasenko
2016-10-25ash: [BUILTIN] Use EXEXIT in place of EXEXECDenys Vlasenko
2016-10-25ash,hush: set exit code 127 in "sh /does/not/exist" caseDenys Vlasenko
2016-10-24ash: explain EXP_REDIR and why we (dont) glob redir filenamesDenys Vlasenko
2016-10-24ash: return exit status of nofork appletsRon Yorston
2016-10-07ash: all blocks in function node copying must be SHELL_ALIGNedDenys Vlasenko
2016-10-07ash testsuite: fix false positivesDenys Vlasenko
2016-10-07ash: get rid of two global data variablesDenys Vlasenko
2016-10-07ash: comment out free(p) just before _exit, tweak some outdated commentsDenys Vlasenko
2016-10-03hush: add commented-out debug printouts in "memleak" built-inDenys Vlasenko