aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| | * | | | | | | | | | | | Minor update in TODO.Arnold D. Robbins2013-07-241-0/+5
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Merge branch 'gawk-4.1-stable'Arnold D. Robbins2013-07-083-7/+10
| |\| | | | | | | | | | | |
| | * | | | | | | | | | | | Make min be MIN.Arnold D. Robbins2013-07-083-7/+10
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Merge branch 'gawk-4.1-stable'Arnold D. Robbins2013-07-043-4/+19
| |\| | | | | | | | | | | |
| | * | | | | | | | | | | | Force array indices to be strings in flatten_array API.Arnold D. Robbins2013-07-043-4/+19
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Merge branch 'gawk-4.1-stable'Arnold D. Robbins2013-07-048-14/+162
| |\| | | | | | | | | | | |
| | * | | | | | | | | | | | Fix for %c in multibyte locale + new tests.Arnold D. Robbins2013-07-048-14/+162
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Merge branch 'gawk-4.1-stable'Arnold D. Robbins2013-07-035-6/+19
| |\| | | | | | | | | | | |
| | * | | | | | | | | | | | Fix a typo in test/ChangeLog.Arnold D. Robbins2013-07-021-1/+1
| | | | | | | | | | | | | |
| | * | | | | | | | | | | | Update in README_d/README.pc.Arnold D. Robbins2013-07-022-4/+9
| | | | | | | | | | | | | |
| | * | | | | | | | | | | | Bug fix in profile.c:pp_string for valgrind.Arnold D. Robbins2013-07-022-1/+9
| | | | | | | | | | | | | |
* | | | | | | | | | | | | | Patch the select extension's set_non_blocking function to check that fcntl ↵Andrew J. Schorr2013-07-075-2/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | and O_NONBLOCK are available.
* | | | | | | | | | | | | | In io.c:wait_any, use sigprocmask if available.Andrew J. Schorr2013-07-075-3/+39
| | | | | | | | | | | | | |
* | | | | | | | | | | | | | In select extension, if lacking sigaction, reset signal handler each time a ↵Andrew J. Schorr2013-07-072-0/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | signal is trapped.
* | | | | | | | | | | | | | Enhance select signal function to return info about previous handler and ↵Andrew J. Schorr2013-07-052-15/+84
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | decide whether to override when it is unknown.
* | | | | | | | | | | | | | Patch the select extension set_non_blocking function to work with a single ↵Andrew J. Schorr2013-07-054-6/+29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | "" argument.
* | | | | | | | | | | | | | For select extension signal trapping, fall back to signal if sigaction is ↵Andrew J. Schorr2013-07-052-11/+26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | unavailable.
* | | | | | | | | | | | | | Add a kill function to the select extension, and check whether sigprocmask ↵Andrew J. Schorr2013-07-055-7/+77
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | is available.
* | | | | | | | | | | | | | Revert incorrect patch to wait_any and instead use waitpid to avoid blocking.Andrew J. Schorr2013-07-045-6/+31
| | | | | | | | | | | | | |
* | | | | | | | | | | | | | Remove unused api_lookup_file hook.Andrew J. Schorr2013-07-023-35/+13
| | | | | | | | | | | | | |
* | | | | | | | | | | | | | After the gawkapi get_file function opens a file, call the BEGINFILE block.Andrew J. Schorr2013-07-024-195/+230
| | | | | | | | | | | | | |
* | | | | | | | | | | | | | Patch select to remove support for buggy case where the index had a numeric ↵Andrew J. Schorr2013-07-022-32/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | value.
* | | | | | | | | | | | | | Patch gawkapi flatten_array to pass index values as strings in all cases!Andrew J. Schorr2013-07-023-4/+19
| | | | | | | | | | | | | |
* | | | | | | | | | | | | | Tighten up some argument checks in the select extension.Andrew J. Schorr2013-07-022-6/+15
| | | | | | | | | | | | | |
* | | | | | | | | | | | | | Add new extension header files to EXTRA_DIST so they will be in the tarball.Andrew J. Schorr2013-07-023-2/+10
| | | | | | | | | | | | | |
* | | | | | | | | | | | | | Enhance getline to return -2 when an I/O operation should be retried.Andrew J. Schorr2013-07-025-14/+79
| | | | | | | | | | | | | |
* | | | | | | | | | | | | | Add set_non_blocking function to the select extension.Andrew J. Schorr2013-07-012-1/+38
| | | | | | | | | | | | | |
* | | | | | | | | | | | | | Add PROCINFO["errno"] and errno extension to map between errno and strings.Andrew J. Schorr2013-07-019-28/+665
| | | | | | | | | | | | | |
* | | | | | | | | | | | | | Add signal trapping support to the select extension.Andrew J. Schorr2013-07-013-10/+285
| | | | | | | | | | | | | |
* | | | | | | | | | | | | | Added first version of select extension and new API hooks needed by it.Andrew J. Schorr2013-06-3012-20/+379
|/ / / / / / / / / / / / /
* | | | | | | | | | | | | Merge branch 'gawk-4.1-stable'Arnold D. Robbins2013-06-273-6/+6
|\| | | | | | | | | | | |
| * | | | | | | | | | | | Minor cleanup in awkgram.y.Arnold D. Robbins2013-06-273-6/+6
| | | | | | | | | | | | |
* | | | | | | | | | | | | Merge branch 'gawk-4.1-stable'Arnold D. Robbins2013-06-2712-10/+79
|\| | | | | | | | | | | |
| * | | | | | | | | | | | New test case for dfa problem fixed earlier.Arnold D. Robbins2013-06-276-2/+33
| | | | | | | | | | | | |
| * | | | | | | | | | | | Add helpers/ChangeLog, update in testdfa.c.Arnold D. Robbins2013-06-272-0/+14
| | | | | | | | | | | | |
| * | | | | | | | | | | | Doc fix with texinfo.tex.Arnold D. Robbins2013-06-274-8/+32
| | | | | | | | | | | | |
* | | | | | | | | | | | | Merge branch 'gawk-4.1-stable'Arnold D. Robbins2013-06-246-18/+30
|\| | | | | | | | | | | |
| * | | | | | | | | | | | Fix multibyte character problem with brackets in dfa.c.Arnold D. Robbins2013-06-242-7/+14
| | | | | | | | | | | | |
| * | | | | | | | | | | | Move clos1way test into Makefile.am.Arnold D. Robbins2013-06-244-11/+16
| | | | | | | | | | | | |
* | | | | | | | | | | | | Merge branch 'gawk-4.1-stable'Eli Zaretskii2013-06-242-4/+11
|\| | | | | | | | | | | |
| * | | | | | | | | | | | Fix inconsistency in system vs pipes in non-socket Windows builds.Eli Zaretskii2013-06-242-4/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | io.c: Move #include "popen.h" out of the HAVE_SOCKETS condition, as this is needed for non-sockets builds as well. See http://lists.gnu.org/archive/html/bug-gawk/2013-06/msg00014.html for the details of the problem this caused.
* | | | | | | | | | | | | Merge branch 'gawk-4.1-stable'Arnold D. Robbins2013-06-240-0/+0
|\| | | | | | | | | | | |
| * | | | | | | | | | | | Merge remote-tracking branch 'origin/gawk-4.1-stable' into gawk-4.1-stableArnold D. Robbins2013-06-242-1/+6
| |\ \ \ \ \ \ \ \ \ \ \ \
* | \ \ \ \ \ \ \ \ \ \ \ \ Merge branch 'master' of ssh://git.sv.gnu.org/srv/git/gawkArnold D. Robbins2013-06-222-1/+6
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / / / / / |/| / / / / / / / / / / / / | |/ / / / / / / / / / / /
| * | | | | | | | | | | | test/Maketests (clos1way): Set AC_ALL=C, since clos1way.awk no longer does.Eli Zaretskii2013-06-222-1/+6
| | | | | | | | | | | | |
* | | | | | | | | | | | | Doc update for isarray.Arnold D. Robbins2013-06-224-280/+324
| | | | | | | | | | | | |
* | | | | | | | | | | | | Addition in TODO.Arnold D. Robbins2013-06-221-0/+4
|/ / / / / / / / / / / /
* | | | | | | | | | | | Minor fix for io.c for VMS.Arnold D. Robbins2013-06-152-0/+11
| | | | | | | | | | | |
* | | | | | | | | | | | Update NEWS.Arnold D. Robbins2013-06-111-0/+17
| | | | | | | | | | | |
* | | | | | | | | | | | Improve fix for debugger on Windows.Arnold D. Robbins2013-06-113-8/+22
| | | | | | | | | | | |