aboutsummaryrefslogtreecommitdiffhomepage
path: root/exec.c
Commit message (Expand)AuthorAge
* remove trailing spacesGravatar Grissiom2010-09-18
* Check return value of a few write calls and retry on EINTR, and fix a few oth...Gravatar axel2009-02-23
* Handle exit status of processes terminated by signalsGravatar axel2009-02-22
* Switch from ARG_MAX to getting value from sysconf, glibc no longer defines th...Gravatar axel2009-02-01
* Improve error messages on failed execve calls a bit moreGravatar liljencrantz2008-01-16
* Add lots of new code comments.Gravatar liljencrantz2008-01-14
* The ability to switch to sh for processing files starting with a ':' brokeGravatar Nicholas Burlett2008-01-04
* Cleanup and improve the exit status numbers and the messages generated on err...Gravatar liljencrantz2008-01-09
* Implement non-clobbering file io. Use the >? operator for this for now.Gravatar liljencrantz2007-10-27
* Minor bug fix - the parse_util_set_argv function can trigger an event, hence ...Gravatar liljencrantz2007-10-15
* Make the maximum execve size test use sysconf. Create a fallback if sysconf i...Gravatar liljencrantz2007-10-15
* Second part of improved execve errors - this patch makes the memory limits ni...Gravatar liljencrantz2007-10-15
* First stab at better error reporting on too many arguments to execve.Gravatar liljencrantz2007-10-15
* Don't crash when trying to close fds for a builtin commandGravatar liljencrantz2007-10-06
* There code for detecting when a keepalive process was needed missed lots of c...Gravatar liljencrantz2007-09-24
* Improve commenting a bitGravatar liljencrantz2007-09-24
* Whitespace fixes, etc.Gravatar liljencrantz2007-09-23
* Fix rather large performance issue on systems with slow fork syscall - a fork...Gravatar liljencrantz2007-09-22
* Correct minor typos, stupid error messages, indentation and drop unused varia...Gravatar liljencrantz2007-09-22
* Indentation, typo and formating fixes. Very minor patch.Gravatar liljencrantz2007-09-09
* Make sure that io redirections are respected by the '.' builtin. This was not...Gravatar axel2007-04-26
* Add the possibility for functions which do not shadow the arguments of the ca...Gravatar axel2007-04-23
* Add support for changing token separator in command substitution. IT is not t...Gravatar axel2007-04-23
* Allow named arguments to function instead of only $argv. Philip Ganchev once ...Gravatar axel2007-04-17
* Fix a bug where io redirection of builtins would not truncate files if the bu...Gravatar axel2007-03-25
* Do not use stdout to report errors when stderr is dead - take the hint instea...Gravatar axel2007-01-22
* Use constant instead of hardcoded value for sleeptime on failed fork callGravatar axel2007-01-22
* Minor code simplification in exec.cGravatar axel2007-01-22
* Print stack trace when execting due to fatal problem or bugGravatar axel2007-01-22
* Minor code edits. Add curly brackets in various places, add or rewrite variou...Gravatar axel2007-01-22
* Check error code when writing output from builtins - try to report errorsGravatar axel2007-01-22
* Make it possible to buffer input to other file descriptors than stdin. It is ...Gravatar axel2007-01-08
* Make sure errno is not changed when error reporting after a failed call to ex...Gravatar axel2007-01-08
* Fix bug in IO redirection making is possible for the IO redirections to fail ...Gravatar axel2007-01-08
* Update to the ':' patch by Nicholas Burlett. This patch makes sure that ':' s...Gravatar axel2006-12-12
* colon-command supportGravatar nickburlett2006-12-09
* Update documentation display code to run roff on the client system instead of...Gravatar axel2006-11-18
* A few additional input checks, minor code simplifications, and some indentati...Gravatar axel2006-11-15
* Remove getpgid prototype from exec.c - this prototype seems to be no longer m...Gravatar axel2006-11-15
* Use fcntl to automatically close fishd socken on exec instead of handling it ...Gravatar axel2006-11-15
* Fix file descriptor leakage from completion pagerGravatar axel2006-11-12
* Make sure signals aren't blocked while autoloading, also add a few consistenc...Gravatar axel2006-10-30
* Change the way the umask is used so that executable bits are ignored on file ...Gravatar axel2006-10-27
* Use bitset to implement flags for jobs instead of wasting a whole int for eve...Gravatar axel2006-10-26
* Fix a number of bugs found using the warnings generated by earlier patchGravatar axel2006-10-20
* Be more rigorous with the exit codes set by the parser and builtinsGravatar axel2006-10-09
* Make it possible to save a function when defining it using the -S switchGravatar axel2006-09-09
* Fix bug reportad by Martin Bähr that causes fish fail when using blocks in p...Gravatar axel2006-08-27
* Minor tweaks to previous fish_pager patch to fix two bugsGravatar axel2006-08-22
* Add support for buffering of input to a command, the first step to piping dat...Gravatar axel2006-08-13